:root{
    /* NEW: font stacks */
  --font-sans: "Poppins", sans-serif;
  --crimson-font: "Crimson Pro", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}

body {
  /* overflow-x: hidden; */
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #f5f5f5;
}

img {
  max-width: 100%;
  display: block;
}

strong {
  font-weight: 600;
}

.container {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

 /*------- header section -------*/

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 0;
  /* border-bottom: 1px solid #e5e5e5; */
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
}

.logo {
  height: auto;
  width: 280px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
}

.header-cta-whatsapp {
  background: #55d95a;
  color: #ffffff;
}

.header-cta-book {
  background: #f4c51e;
  color: #111111;
}

.header-cta-text {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.header-cta-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  flex-shrink: 0;
}

.language-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
}

.language-switcher a {
  text-decoration: none;
  color: #000;
  border: none;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
}

.language-switcher a.active {
  background: #1C2BB5;
  color: #fff;
  border-color: #1C2BB5;
}

.mobile-sticky-cta {
  display: none;
}
 /*------- hero section -------*/

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1d6cf2 0%, #2f22ff 100%);
  padding: 90px 50px 0;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/hero-background.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

.hero .container,
.hero-content,
.hero-image {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  /* align-items: end; */
  gap: 20px;
}

.hero-content {
  padding: 0 0 70px;
  max-width: 790px;
  /* max-width: 560px; */
}

.hero-subcontent {
  padding: 0 20px;
}

.hero-content h1 {
  margin: 0 0 30px;
  /* max-width: 620px; */
  font-size: clamp(26px, 4.8vw, 72px);
  line-height: 1.05;
  font-weight: 600;
}

.hero-title-span {
  color: #FAC725;
}

.hero-subtitle {
  font-size: clamp(14px, 2.1vw, 40px);
  line-height: 1.25;
  margin-bottom: 20px;
  /* max-width: 520px; */
}

.hero-note {
  font-size: clamp(12px, 1.2vw, 25px);
  line-height: 1.45;
  margin-bottom: 28px;
  /* max-width: 500px; */
  opacity: 0.95;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 0;
  /* padding: 14px 25px; */
  border-radius: 999px;
  /* background: #ffbf00; */
  color: #FAC725;
  /* color: #123; */
  text-decoration: none;
  font-weight: 600;
  font-size: 25px;
}

/* .btn-primary:hover {
  background: #FAC725;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
} */

.appt-btn-icon {
  width: 45px;
  height: 45px;
  margin-left: 15px;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: end;
}

.hero-image img {
  width: 620px;
  max-width: none;
  height: auto;
  display: block;
}

 /*------- trust section -------*/
.trust-section {
  background: #fff;
  padding: 80px 0 90px;
  /* color: #1b1b1b; */
}

.trust-heading {
  text-align: center;
  margin-bottom: 48px;
}

.trust-subtitle {
  /* margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.4;
  color: #1C2BB5;
  font-weight: 400; */
  margin: 0;
  font-size: clamp(20px, 3vw, 46px);
  line-height: 1.2;
  color: #1C2BB5;
}

.trust-heading h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 46px);
  line-height: 1.2;
  font-weight: 600;
  color: #1C2BB5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 20px;
  gap: 50px;
  justify-content: center;
}

.trust-card {
  background: transparent;
  border: 3px solid #1C2BB5;
  border-radius: 35px;
  padding: 28px 22px 20px;
  text-align: center;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(47, 60, 207, 0.08);
}

.trust-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon img {
  max-width: 100%;
  max-height: 100%;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.trust-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
  color: #333333;
}

.trust-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #666666;
  font-style: italic;
  font-weight: 400;
}
 
 /*------- accreditation section -------*/
.accreditation-section {
  background: #efefef;
  padding: 40px 0 34px;
  color: #1b1b1b;
}

.accreditation-section-title {
  background: #fff;
  padding: 44px 0 34px;
  color: #1b1b1b;
}

.accreditation-heading {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 15px;
  width: 100%;
}

.accreditation-heading h2 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 46px);
  line-height: 1.3;
  font-weight: 600;
  color: #1C2BB5;
  max-width: 765px;
}

.accreditation-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 54px;
}

.accreditation-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
}

.accreditation-logo img {
  max-height: 86px;
  /* max-height: 56px; */
  /* max-width: 120px; */
  min-height: 66px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.95;
}

/* mobile accreditation logo loop */
@keyframes accreditationLogoLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


 /*------- potential section -------*/
.potential-section {
  background: #F6F9FF;
  padding: 90px 0 70px;
  /* color: #1b1b1b; */
}

.potential-container {
  max-width: 1200px;
}

.potential-heading {
  text-align: center;
  margin-bottom: 44px;
}

.potential-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 5.2vw, 98px);
  line-height: 1.2;
  font-weight: 600;
  color: #333333;
}

.potential-heading .potential-title-1,
.potential-heading .potential-title-2 {
  display: inline-block;
  opacity: 0;
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease;
}

.potential-heading .potential-title-1 {
  --start-x: -250px;
  --final-x: -150px;
  transform: translateX(var(--start-x));
}

.potential-heading .potential-title-2 {
  --start-x: 250px;
  --final-x: 150px;
  transform: translateX(var(--start-x));
}

.potential-heading.is-visible .potential-title-1,
.potential-heading.is-visible .potential-title-2 {
  opacity: 1;
  transform: translateX(var(--final-x));
}

.potential-heading p {
  margin: 0 auto;
  max-width: 780px;
  font-size: clamp(12px, 2.5vw, 36px);
  line-height: 1.45;
  font-weight: 500;
  color: #333333;
}

.potential-compare {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0 30px 40px;
  /* max-width: 760px; */
  margin: 0 auto 30px;
}

.potential-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* .before-card {
  margin-top: 30px;
} */

.potential-label {
  margin-bottom: 14px;
  font-size: clamp(20px, 2.6vw, 40px);
  line-height: 1.2;
  font-weight: 600;
}

.before-label {
  color: #666666;
}

.after-label {
  color: #1C2BB5;
}

.potential-image-wrap-box{
  display: flex;
  justify-content: center;
}

.potential-image-wrap {
  width: 100%;
  min-width: 520px;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: #ffffff;
}

.before-image-wrap {
  border: 3px solid #B3B3B3;
  border-right: none;
  min-width: 510px;
}

.after-image-wrap {
  border: 10px solid #1C2BB5;
}

.potential-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* if your images need different crop positions */
.before-image-wrap .potential-image {
  object-position: center top;
}

.after-image-wrap .potential-image {
  /* object-position: center center; */
  object-fit: contain;
  object-position: 50% 80%;
  transform: scale(3);
}

.potential-note {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
}

.potential-note p {
  margin: 0;
  max-width: 310px;
  font-size: clamp(12px, 2.2vw, 24px);
  line-height: 1.4;
  font-weight: 500;
  align-self: end;
}

.potential-note-left p {
  color: #666666;
}

.potential-note-right p {
  color: #1C2BB5;
  font-weight: 500;
}

.potential-arrow {
  width: 98px;
  /* height: 52px; */
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 25px;
}

.potential-footer {
  text-align: center;
  margin-top: 40px;
}

.potential-footer-title {
  margin: 0 0 4px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  color: #000;
}

.potential-footer-note {
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
  color: #000;
}

 /*------- generic section -------*/
.generic-section {
  background: #fff;
  padding: 90px 0 80px;
  /* color: #1b1b1b; */
}

/* .generic-container {
  max-width: 1120px;
} */

.generic-heading {
  text-align: center;
  margin-bottom: 70px;
}

.generic-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 5.2vw, 98px);
  line-height: 1.2;
  font-weight: 600;
  color: #333333;
}

.generic-heading p {
  margin: 0 auto;
  max-width: 960px;
  font-size: clamp(12px, 2.5vw, 36px);
  line-height: 1.45;
  font-weight: 500;
  color: #333333;
}

.generic-compare {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  align-items: stretch;
  /* align-items: center; */
  gap: 22px;
  padding: 0 20px;
}

.generic-panel {
  position: relative;
  padding-top: 22px;
}

.generic-box {
  background: #F8F9FB;
  border-radius: 40px;
  padding: 120px 38px 28px;
  min-height: stretch;
  /* min-height: 330px; */
}

.generic-pill {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 400px;
  text-align: center;
  padding: 1.5rem 2.4rem;
  border-radius: 999px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
}

.generic-pill-dark {
  background: #333333;
}

.generic-pill-blue {
  background: #2438c9;
}

.generic-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 35px;
  align-items: start;
}

.generic-item + .generic-item {
  margin-top: 70px;
}

.generic-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.generic-icon-blue {
  background: #2438c9;
}

.generic-icon img {
  /* width: 34px;
  height: 34px; */
  max-height: 48px;
  object-fit: contain;
}

.generic-text h3 {
  margin: 2px 0 6px;
  font-size: clamp(12px, 2.6vw, 33px);
  line-height: 1.2;
  font-weight: 500;
  color: #333333;
}

.generic-text p {
  margin: 0;
  font-size: clamp(12px, 2.2vw, 27px);
  line-height: 1.45;
  font-style: italic;
  font-weight: 400;
  color: #777777;
}

.generic-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.generic-arrow img {
  width: 135px;
  height: auto;
  display: block;
}

 /*------- protocol section -------*/
.protocol-section {
  background: #F7F7F7;
  padding: 90px 0 90px;
  overflow-x: clip;
  position: relative;
}

/* .protocol-container {
  max-width: 1120px;
} */

.protocol-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 80px;
  padding: 0 20px;
  /* max-width: 560px; */
  margin: 0 auto 100px;
}

.protocol-title-wrap {
  grid-column: 1/4;
  grid-row: 1;
}

.protocol-right {
  grid-column: 2/5;
  grid-row: 2;
}

.protocol-title {
  margin: 0;
  /* max-width: 210px; */
  font-size: clamp(24px, 5.2vw, 90px);
  line-height: 1.05;
  font-weight: 600;
  color: #333333;
}

/* .protocol-content {
  max-width: 330px;
} */

.protocol-content p {
  margin: 0 0 50px;
  font-size: clamp(12px, 2.5vw, 32px);
  line-height: 1.45;
  font-weight: 400;
  color: #333333;
}

.protocol-highlight-row {
  grid-column: 2;
  width: 100%;
}

/* .protocol-highlight {
  display: inline-block;
  margin-top: 20px;
  margin-left: -68px;
  background: #FFE6A1;
  padding: 4px 66px 3px;
  width: calc(100% + 60px);
}

.protocol-highlight span {
  display: inline-block;
  font-size: clamp(16px, 2.5vw, 48px);
  line-height: 1.2;
  font-style: italic;
  font-weight: 500;
  color: #000;
  transform: translateY(-30px);
} */

.protocol-right {
  position: relative;
  overflow: visible;
}

.protocol-highlight {
  position: relative;
  display: inline-block;
  margin-top: 12px;
  padding: 0;
  background: none;
  isolation: isolate;
}

.protocol-highlight::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-30%);
  left: -18px;
  right: calc((100vw - 100%) * -1);
  height: 80px;
  background: #FFE6A1;
  z-index: -1;
}

.protocol-highlight span {
  display: inline;
  font-size: clamp(13px, 2.5vw, 44px);
  line-height: 1.15;
  font-style: italic;
  font-weight: 500;
  color: #000;
}

.ph-word-wrap {
  display: inline-block;
  white-space: nowrap;
}

.ph-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ph-letter.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.protocol-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 90px 70px;
  padding: 0 30px;
  max-width: 980px;
  margin: 0 auto;
}

.protocol-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.protocol-icon {
  /* width: 64px; */
  max-height: 130px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.protocol-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.protocol-feature h3 {
  margin: 0 0 4px;
  font-size: clamp(15px, 2.6vw, 33px);
  line-height: 1.2;
  font-weight: 500;
  color: #333333;
}

.protocol-feature p {
  margin: 0;
  max-width: 88%;
  font-size: clamp(12px, 2.2vw, 27px);
  line-height: 1.45;
  font-style: italic;
  color: #7a7a7a;
}

/*------- FITT section -------*/
.fitt-section {
  background: #ffffff;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.fitt-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 535px;
  background: #F6F9FF;
  z-index: 1;
}

.fitt-container {
  position: relative;
  z-index: 2;
}

.fitt-heading {
  text-align: center;
  margin-bottom: 150px;
}

.fitt-heading h2 {
  margin: 0 0 70px;
  font-size: clamp(24px, 5.2vw, 98px);
  line-height: 1.15;
  font-weight: 600;
  color: #333333;
}

.fitt-heading p {
  margin: 0 auto;
  max-width: 970px;
  font-size: clamp(12px, 2.5vw, 36px);
  line-height: 1.45;
  font-weight: 500;
  color: #333333;
}

.fitt-subheading {
  text-align: center;
  margin-bottom: 45px;
}

.fitt-subheading h3 {
  margin: 0;
  font-size: clamp(16px, 3vw, 60px);
  line-height: 1.25;
  font-weight: 600;
  color: #333333;
}

.fitt-subheading .fitt-highlight {
  color: #1C2BB5;
}

.fitt-video-wrap {
  width: 95%;
  max-width: 1200px;
  margin: 40px auto 0;
  position: relative;
  z-index: 3;
  border-radius: 35px;
  overflow: hidden;
  background: #e9edf3;
}

.fitt-video {
  display: block;
  width: 100%;
  aspect-ratio: 1205 / 678;
  object-fit: cover;
  background: #dfe5ee;
}

/*------- approach section -------*/
.approach-section {
  background: #fff;
  padding: 90px 0 90px;
}

.approach-heading {
  text-align: center;
  margin-bottom: 48px;
}

.approach-heading h2 {
  margin: 0;
  font-size: clamp(16px, 2.8vw, 48px);
  line-height: 1.15;
  font-weight: 600;
  color: #333333;
}

.approach-content {
  display: flex;
  justify-content: center;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  padding: 0 20px;
  width: 100%;
}

.approach-card {
  border: 1px solid #333333;
  border-radius: 22px;
  padding: 22px 18px 16px;
  background: transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.approach-card h3 {
  margin: 0 0 20px;
  font-size: clamp(14px, 2.7vw, 36px);
  line-height: 1.35;
  font-weight: 400;
  color: #111111;
  min-height: 4.2em;
}

.approach-image-wrap {
  margin-top: auto;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1.18 / 0.72;
}

.approach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.15);
  transform-origin: center;
}

/* per-image fine tuning */
.approach-img-1 {
  object-position: center center;
}

.approach-img-2 {
  object-position: center center;
}

.approach-img-3 {
  object-position: right center;
  transform: scale(1.22);
}

/*------- benefits section -------*/
.benefits-section {
  background: #fff;
  padding: 90px 0 60px;
}

.benefits-container {
  padding: 0 30px;
}

.benefits-panel {
  background: #F2F2F2;
  border-radius: 34px;
  padding: 60px 48px 0;
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  grid-template-areas:
    "left right"
    "person right";
  gap: 20px;
  overflow: hidden;
  position: relative; /* important */
  overflow: visible;  /* allow image to overflow */
}

.benefits-left {
  grid-area: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}

.benefits-right {
  grid-area: right;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 20px 0 100px;
  position: relative;
  z-index: 2;
}

.benefits-person-wrap {
  grid-area: person;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  /* margin-top: -60px; */
  position: relative;
  z-index: 1;
}

.benefits-title {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  color: #1C2BB5;
}

.benefits-number {
  font-size: clamp(96px, 12vw, 170px);
  line-height: 1;
  font-weight: 500;
  font-style: italic;
}

.benefits-title-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.95;
  font-weight: 600;
  gap: 8px;
  /* margin-top: 10px; */
}

.benefits-title-text span {
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 600;
}

.benefits-person {
  width: 100%;
  /* max-width: 520px; */
  height: auto;
  display: block;
  transform: translateX(-50px);
}

.man-image {
  position: absolute;
  left: 0;
  bottom: 0;

  transform: translateX(-100px); /* adjust based on your design */

  z-index: 10; /* higher than panel content */
}

.benefit-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  align-items: start;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-content h3 {
  margin: 0 0 8px;
  font-size: clamp(15px, 2.5vw, 34px);
  line-height: 1.15;
  font-weight: 500;
  color: #333333;
}

.benefit-content p {
  margin: 0;
  font-size: clamp(12px, 1.95vw, 23px);
  line-height: 1.4;
  color: #666666;
  font-weight: 400;
}

.benefit-stats {
  display: flex;
  gap: 38px;
  align-items: flex-end;
  margin-top: 10px;
}

.benefit-stat-number {
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1;
  font-weight: 600;
  color: #1C2BB5;
}

.benefit-stat-up-to {
  font-size: 15px;
  /* font-size: clamp(15px, 2.7vw, 36px); */
  line-height: 1;
  font-weight: 500;
  color: #333333;
  text-align: left;
  margin-top: 20px;
}

.benefit-stat-label {
  font-size: clamp(12px, 1vw, 18px);
  line-height: 1.2;
  color: #666666;
}

.benefits-disclaimer {
  margin: 60px auto 0;
  max-width: 860px;
  padding: 0 20px;
  text-align: center;
  font-size: clamp(8.5px, 1.4vw, 16px);
  font-weight: 300;
  line-height: 1.35;
  color: #666666;
  font-style: italic;
}

/*------- compare section -------*/
.compare-section {
  background: #F6F9FF;
  padding: 90px 0 80px;
}

.compare-slide-section {
  padding: 90px 0 0px;
}

/* .compare-container {
  max-width: 1280px;
} */

.compare-desktop {
  display: block;
}

.compare-mobile {
  display: none;
}

.compare-table {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.3fr;
  grid-template-rows: 78px repeat(6, minmax(65px, auto));
  gap: 0;
  align-items: stretch;
  padding: 0 20px;
}

.compare-col {
  display: grid;
  grid-template-rows: 78px repeat(6, minmax(65px, auto));
}

.compare-head {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 12px 18px;
}

.compare-head h3 {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.2;
  font-weight: 500;
}

.compare-head p {
  margin: 4px 0 0;
  font-size: clamp(10px, 0.9vw, 14px);
  line-height: 1.2;
  font-weight: 500;
}

.compare-head-empty {
  background: transparent;
  min-height: 74px;
}

/* .compare-col-featured,
.compare-col-plain {
  border-radius: 22px;
  overflow: hidden;
  background: #F6F9FF;
}

.compare-col-featured {
  border: 2px solid #1C2BB5;
}

.compare-col-plain {
  border: 2px solid #DCDCDC;
} */

.compare-col-featured,
.compare-col-plain {
  background: transparent;
}

.compare-head-field {
  color: #666666;
  justify-content: center;
  text-align: left;
  padding-left: 0;
}

/* header */
.compare-col-featured .compare-head-blue {
  background: #1C2BB5;
  color: #fff;
  border: 2px solid #000000;
  border-bottom: none;
  border-radius: 40px 40px 0 0;
}

.compare-col-plain .compare-head-gray {
  background: #E6E6E6;
  color: #111111;
  border: 2px solid #DCDCDC;
  border-bottom: none;
  border-radius: 40px 40px 0 0;
}

/* normal rows */
.compare-col-featured .compare-row {
  border-left: 2px solid #1C2BB5;
  border-right: 2px solid #1C2BB5;
  border-bottom: 1px solid #D9D9D9;
  background: white;
}

.compare-col-plain .compare-row {
  border-left: 2px solid #DCDCDC;
  border-right: 2px solid #DCDCDC;
  border-bottom: 1px solid #D9D9D9;
  background: white;
}

/* last row closes the outer box */
.compare-col-featured .compare-row:last-child {
  border-bottom: 2px solid #1C2BB5;
  border-radius: 0 0 40px 40px;
}

.compare-col-plain .compare-row:last-child {
  border-bottom: 2px solid #DCDCDC;
  border-radius: 0 0 40px 40px;
}

.compare-head-blue,
.compare-head-gray {
  border-radius: 20px 20px 0 0;
}

.compare-head-blue {
  background: #1C2BB5;
  color: #fff;
}

.compare-head-gray {
  background: #E6E6E6;
  color: #111111;
}

.compare-col-label .compare-row {
  background: transparent;
}

.compare-row {
  min-height: 65px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid #cccccc;
}

.compare-col-label .compare-row {
  justify-content: flex-start;
  text-align: left;
  padding-left: 0;
}

.compare-head,
.compare-head-empty {
  min-height: 78px;
}

.compare-col.compare-col-label .compare-row:last-child {
  border-bottom: none;
}

.compare-col-label span {
  font-size: clamp(14px, 1.45vw, 24px);
  line-height: 1.3;
  color: #666666;
  font-weight: 300;
}

.compare-row strong {
  font-size: clamp(13px, 1.45vw, 24px);
  line-height: 1.3;
  color: #000000;
  font-weight: 300;
}

.compare-row-emphasis strong,
.compare-mobile-row.compare-row-emphasis strong {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.compare-prefix {
  font-size: clamp(13px, 1.45vw, 24px);
  line-height: 1.3;
  font-weight: 300;
  color: #000000;
}

.compare-value {
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.3;
  font-weight: 500;
  color: #000000;
}

.compare-row-emphasis strong {
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 500;
}

.compare-bottom {
  display: grid;
  padding: 0 20px;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas:
    "message person"
    "note person";
  gap: 40px;
  align-items: end;
  margin-top: 110px;
  justify-content: center;
}

.compare-message {
  grid-area: message;
  /* max-width: 520px; */
  align-self: end;
}

.compare-person-wrap {
  grid-area: person;
  display: flex;
  justify-content: center;
  align-self: stretch;
  aspect-ratio: 4 / 5;
  background: linear-gradient(0deg, #E6E6E6 0%, #FFFFFF 100%);
  border-radius: 20px;
}

.compare-note {
  grid-area: note;
  align-self: end;
  font-size: clamp(12px, 2.5vw, 36px);
  line-height: 1.45;
  color: #333333;
  font-weight: 500;
}

/* .compare-message {
  max-width: 520px;
  align-self: center;
} */

.compare-message p {
  margin: 0 0 80px;
  font-size: clamp(20px, 3.2vw, 60px);
  line-height: 1.4;
  font-weight: 400;
  color: #333333;
}

.compare-line {
  display: block;
  opacity: 0;
  transition:
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.85s ease;
  will-change: transform, opacity;
}

/* final positions = keep your original layout */
.compare-line-1 {
  --line-final-x: 0px;
  --line-start-x: -180px;
  transition-delay: 0s;
}

.compare-line-2 {
  --line-final-x: 100px;
  --line-start-x: 260px;
  transition-delay: 0.14s;
}

.compare-line-3 {
  --line-final-x: 0px;
  --line-start-x: -180px;
  transition-delay: 0.28s;
}

.compare-line-4 {
  --line-final-x: 100px;
  --line-start-x: 260px;
  transition-delay: 0.42s;
}

/* initial state */
.compare-line-1,
.compare-line-2,
.compare-line-3,
.compare-line-4 {
  transform: translateX(var(--line-start-x));
}

/* visible state */
.compare-bottom.is-visible .compare-line-1,
.compare-bottom.is-visible .compare-line-2,
.compare-bottom.is-visible .compare-line-3,
.compare-bottom.is-visible .compare-line-4 {
  opacity: 1;
  transform: translateX(var(--line-final-x));
}

.compare-message .compare-em {
  font-style: italic;
  font-weight: 500;
}

.compare-message .compare-blue {
  color: #1C2BB5;
  font-weight: 600;
}

/* .compare-note {
  font-size: clamp(12px, 2.5vw, 36px);
  line-height: 1.45;
  color: #333333;
  font-weight: 500;
} */

.compare-person-wrap {
  display: flex;
  justify-content: center;
  aspect-ratio:  4 / 5;
  background: linear-gradient(0deg, #E6E6E6 0%, #FFFFFF 100%);
  border-radius: 20px;
}

.compare-person {
  width: 100%;
  max-width: 680px;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  /* scale: 0.8; */
}

.compare-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 0;
}

.compare-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D7D7D7;
}

.compare-dot.active {
  background: #9A9A9A;
}

/*------- cta strip section -------*/
.cta-strip-section {
  background: #2592F9;
  padding: 62px 0 60px;
}

.cta-strip-container {
  text-align: center;
}

.cta-strip-section h2 {
  margin: 0 0 10px;
  font-size: clamp(15px, 2.5vw, 48px);
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
}

.cta-strip-section p {
  margin: 0;
  font-size: clamp(12px, 1.45vw, 24px);
  line-height: 1.35;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
}

/*------- gamechanger section -------*/
.gamechanger-section {
  background: #F6F9FF;
  padding: 90px 0 70px;
}

.gamechanger-container {
  padding: 0 20px;
}

.gamechanger-heading {
  margin-bottom: 70px;
}

.gamechanger-heading h2 {
  margin: 0;
  /* max-width: 720px; */
  font-size: clamp(24px, 5.2vw, 98px);
  line-height: 1.08;
  font-weight: 600;
  color: #333333;
}

.gamechanger-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1130px;
  margin: 0 0 0 auto;
}

.gamechanger-card {
  background: #ffffff;
  border-radius: 31px;
  padding: 50px 34px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 50px;
  align-items: center;
}

.gamechanger-icon {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gamechanger-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gamechanger-content h3 {
  margin: 0 0 20px;
  font-size: clamp(20px, 2.5vw, 48px);
  line-height: 1.15;
  font-weight: 600;
  color: #333333;
}

.gamechanger-main {
  margin: 0 0 2px;
  font-size: clamp(15px, 2vw, 36px);
  line-height: 1.35;
  font-weight: 500;
  color: #333333;
}

.gamechanger-sub {
  margin: 0;
  font-size: clamp(12px, 1.45vw, 30px);
  line-height: 1.4;
  font-style: italic;
  color: #666666;
  font-weight: 400;
}

.gamechanger-footer {
  margin: 60px auto 0;
  text-align: center;
  /* max-width: 980px; */
  font-size: clamp(10px, 1.55vw, 26px);
  line-height: 1.45;
  font-style: italic;
  color: #666666;
  font-weight: 400;
}

/*------- shield section -------*/
.shield-section {
  position: relative;
  background: #fff;
  padding: 90px 0 90px;
  isolation: isolate; /* IMPORTANT */
}

.shield-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 435px;
  background: #F6F9FF;
  z-index: 0; /* change from 1 → 0 */
}

.shield-container {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.shield-heading {
  text-align: center;
  margin-bottom: 50px;
}

.shield-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 5.2vw, 98px);
  line-height: 1.1;
  font-weight: 600;
  color: #333333;
}

.shield-heading p {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(15px, 2vw, 36px);
  line-height: 1.4;
  font-weight: 500;
  color: #333333;
}

.shield-visual-wrap {
  position: relative;
  padding-bottom: 110px;
  z-index: 2;
}

.shield-image-box {
  /* max-width: 1100px; */    
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  background: #D9D9D9;
}

.shield-image {
  width: 100%;
  height: 100%;
  min-height: 800px;
  display: block;
  object-fit: cover;
  object-position: right;
}

.shield-cards {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  z-index: 3;
}

.shield-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 50px 18px 60px;
  text-align: center;
  min-height: 194px;
  box-shadow: 0 8px 24px rgba(20, 28, 80, 0.06);
}

.shield-card-icon {
  width: 185px;
  height: 185px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shield-card h3 {
  margin: 0;
  font-size: clamp(10px, 2vw, 36px);
  line-height: 1.08;
  font-weight: 500;
  color: #000000;
}

/*------- workflow section -------*/
.workflow-section {
  background: #fff;
  padding: 90px 0 60px;
}

.workflow-container {
  width: 100% !important;
  margin: 0;
}

.workflow-heading {
  text-align: center;
  margin-bottom: 40px;
}

.workflow-heading span {
  display: inline-block;
  opacity: 0;
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease;
}

/* 左边那一行 */
.workflow-title-1 {
  --start-x: -120px;
  --final-x: -60px;
}

/* 右边那一行 */
.workflow-title-2 {
  --start-x: 120px;
  --final-x: 60px;
}

/* 初始位置 */
.workflow-title-1,
.workflow-title-2 {
  transform: translateX(var(--start-x));
}

/* 出现时 */
.workflow-heading.is-visible .workflow-title-1,
.workflow-heading.is-visible .workflow-title-2 {
  opacity: 1;
  transform: translateX(var(--final-x));
}

.workflow-heading h2 {
  margin: 0 0 22px;
  font-size: clamp(24px, 5.2vw, 98px);
  line-height: 1.1;
  font-weight: 600;
  color: #333333;
}

.workflow-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 20px 35px;
  border-radius: 999px;
  background: #2592F9;
  color: #fff;
  font-size: clamp(13px, 2.5vw, 48px);
  line-height: 1.2;
  font-weight: 600;
}

/* desktop */
.workflow-desktop {
  display: none;
}

.workflow-carousel {
  display: block;
}

.workflow-desktop-list {
  position: relative;
}

.workflow-desktop-list::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: #FFDF84;
}

.workflow-row {
  display: grid;
  grid-template-columns: 82px 1.1fr 2fr;
  gap: 30px;
  align-items: start;
  padding: 18px 0 20px;
}

.workflow-row + .workflow-row {
  border-top: 1px solid #DADADA;
}

.workflow-row-step {
  position: relative;
  z-index: 2;
}

.workflow-step-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFDF84;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333333;
  text-align: center;
}

.workflow-step-label {
  font-size: 14px;
  line-height: 1;
  font-style: italic;
  font-weight: 400;
}

.workflow-step-number {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  margin-top: 4px;
}

.workflow-row-title h3 {
  margin: 0 0 4px;
  font-size: clamp(18px, 1.8vw, 30px);
  line-height: 1.25;
  font-weight: 600;
  font-style: italic;
  color: #333333;
}

.workflow-row-subtitle {
  margin: 0;
  font-size: clamp(11px, 1vw, 16px);
  line-height: 1.35;
  color: #666666;
  font-style: italic;
  font-weight: 500;
}

.workflow-row-content ul {
  margin: 0;
  padding-left: 18px;
  color: #333333;
}

.workflow-row-content li {
  margin: 0 0 6px;
  font-size: clamp(14px, 1.25vw, 21px);
  line-height: 1.45;
  color: #333333;
}

.workflow-row-note {
  margin: 14px 0 0;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.45;
  color: #D19AA6;
  font-style: italic;
}

/* tablet/mobile carousel */
.workflow-steps-strip-wrap {
  overflow: hidden;
  margin-bottom: 18px;
}

.workflow-steps-strip {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.workflow-steps-strip::-webkit-scrollbar {
  display: none;
}

.workflow-carousel {
  display: block;
}

.workflow-steps-strip-wrap {
  overflow: hidden;
  margin: 0 auto 18px;
  max-width: 1320px;
}

.workflow-steps-strip {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  justify-content: flex-start;
}

.workflow-steps-strip::-webkit-scrollbar {
  display: none;
}

.workflow-step-chip {
  flex: 0 0 14.2857%;
  min-width: 120px;
  min-height: 160px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #333333;
}

/* line */
.workflow-step-chip::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  height: 2px;
  background: #E7E7E7;
  z-index: 0;
}

.workflow-step-chip:first-child::before {
  left: 50%;
}

.workflow-step-chip:last-child::before {
  right: 50%;
}

/* desktop progress line only */
.workflow-step-chip.is-complete::before,
.workflow-step-chip.is-current::before {
  background: #FFDF84;
}

/* circle */
.workflow-step-chip::after {
  content: "";
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ECECEC;
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.25s ease;
}

.workflow-step-chip.active::after {
  width: 108px;
  height: 108px;
  background: #FFDF84;
  transform: translate(-50%, -30%);
}

/* text container INSIDE the circle */
.workflow-step-chip-inner {
  position: absolute;
  /* top: 52px;
  left: 50%; */
  transform: translate(0%, 0%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  pointer-events: none;
  transition: all 0.25s ease;
}

.workflow-step-chip.active .workflow-step-chip-inner {
  width: 108px;
  height: 108px;
  transform: translate(0%, -5%);
}

/* label + number */
.workflow-chip-label,
.workflow-chip-number {
  display: block;
  position: static;
  text-align: center;
  color: #333333;
}

.workflow-chip-label {
  font-size: 12px;
  line-height: 1;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 4px;
}

.workflow-chip-number {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

.workflow-step-chip.active .workflow-chip-label {
  font-size: clamp(14px, 1.4vw, 24px);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 6px;
}

.workflow-step-chip.active .workflow-chip-number {
  font-size: clamp(40px, 2.5vw, 48px);
  font-weight: 400;
  font-style: italic;
}

.workflow-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
}

.workflow-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #ececec;
  padding: 0;
  cursor: pointer;
}

.workflow-dot.active {
  background: #b4b4b4;
}

.workflow-panels-wrap {
  overflow: hidden;
  background: #F4D97B;
  margin-top: 18px;
}

.workflow-panels-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.workflow-panel {
  flex: 0 0 100%;
  width: 100%;
}

.workflow-panel-inner {
  padding: 42px 28px 40px;
  text-align: center;
}

.workflow-panel-inner h3 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.6vw, 40px);
  line-height: 1.2;
  font-weight: 600;
  font-style: italic;
  color: #333333;
}

.workflow-panel-inner ul {
  display: inline-block;
  margin: 0;
  padding-left: 22px;
  text-align: left;
}

.workflow-panel-inner li {
  margin: 0 0 5px;
  font-size: clamp(16px, 1.8vw, 28px);
  line-height: 1.45;
  color: #333333;
}

.workflow-panel-note {
  margin: 18px auto 0;
  max-width: 520px;
  font-size: clamp(13px, 1.2vw, 18px);
  line-height: 1.5;
  color: #C6939F;
  font-style: italic;
}

.workflow-carousel {
  display: block;
}

.workflow-steps-strip-wrap {
  overflow: hidden;
  margin: 0 auto 18px;
  max-width: 1320px;
}

.workflow-steps-strip {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: flex-start;
}

.workflow-steps-strip::-webkit-scrollbar {
  display: none;
}

.workflow-steps-strip-wrap {
  overflow: hidden;
  margin: 0 auto 18px;
  max-width: 1320px;
}

.workflow-steps-strip {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.workflow-steps-strip::-webkit-scrollbar {
  display: none;
}

.workflow-step-chip {
  flex: 0 0 14.2857%;
  min-width: 120px;
  min-height: 150px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
}

.workflow-step-chip::before {
  content: "";
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  height: 4px;
  background: #F2F2F2;
  z-index: 0;
}

.workflow-step-chip:first-child::before {
  left: 50%;
}

.workflow-step-chip:last-child::before {
  right: 50%;
}

/* desktop only: yellow progress line */
.workflow-step-chip.is-complete::before,
.workflow-step-chip.is-current::before {
  background: #FFDF84;
}

.workflow-step-chip::after {
  content: "";
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #ECECEC;
  position: absolute;
  /* top: 46px;
  left: 50%; */
  transform: translate(-50%, -30%);
  z-index: 1;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease, height 0.25s ease;
}

/* .workflow-step-chip.active::after {
  background: #FFDF84;
} */

.workflow-chip-label,
.workflow-chip-number {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
  pointer-events: none;
}

.workflow-step-chip .workflow-chip-label {
  margin-top: 8px;
  /* font-size: 15px; */
  line-height: 1;
  font-style: italic;
  font-weight: 400;
}

.workflow-step-chip .workflow-chip-number {
  margin-top: 4px;
  /* font-size: 28px; */
  line-height: 1;
  font-weight: 400;
}

.workflow-step-chip-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
}

/* .workflow-step-chip:not(.active)::after {
  width: 72px;
  height: 72px;
} */

.workflow-step-chip:not(.active) .workflow-step-chip-inner {
  width: 72px;
  height: 72px;
}

.workflow-step-chip:not(.active) .workflow-chip-label {
  font-size: clamp(14px, 1.4vw, 24px);
  font-weight: 400;
  font-style: italic;
  margin-top: 2px;
}

.workflow-step-chip:not(.active) .workflow-chip-number {
  font-size: clamp(40px, 2.75vw, 48px);
  font-weight: 400;
  font-style: italic;
  margin-top: 2px;
}

.workflow-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
}

.workflow-panels-wrap {
  overflow: hidden;
  background: #F4D97B;
  margin-top: 0;
}

.workflow-panel-inner {
  max-width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 60px 55px;
  text-align: center;
}

.workflow-panel-inner h3 {
  margin: 0 0 25px;
  font-size: clamp(20px, 2.55vw, 48px);
  line-height: 1.2;
  font-weight: 600;
  font-style: italic;
  color: #333333;
}

.workflow-panel-inner ul {
  display: inline-block;
  margin: 0;
  padding-left: 22px;
  text-align: left;
}

.workflow-panel-inner li {
  margin: 0 0 5px;
  font-size: clamp(12px, 2vw, 36px);
  line-height: 1.45;
  color: #333333;
}

.workflow-panel-note {
  margin: 18px auto 0;
  max-width: 760px;
  font-size: clamp(12px, 2vw, 28px);
  line-height: 1.5;
  color: #A0828B;
  font-style: italic;
}

/* breakpoints */
@media (max-width: 991px) {
  .workflow-section {
    padding: 72px 0 0;
  }

  .workflow-step-chip {
    flex: 0 0 20%;
    min-width: 150px;
    min-height: 170px;
  }

  /* .workflow-step-chip::before,
  .workflow-step-chip::after,
  .workflow-step-chip-inner {
    top: 58px;
  } */

  .workflow-step-chip::before {
    background: #E7E7E7 !important;
  }

  .workflow-step-chip::after {
    width: 72px;
    height: 72px;
  }

  .workflow-step-chip.active::after {
    transform: translate(-50%, -35%);
  }

  .workflow-step-chip-inner {
    width: 72px;
    height: 72px;
    transform: translate(0%, -20%) !important;
  }

  /* .workflow-step-chip.active .workflow-step-chip-inner {
    width: 120px;
    height: 120px;
  } */

  /* .workflow-step-chip .workflow-chip-label {
    font-size: 12px;
  }

  .workflow-step-chip .workflow-chip-number {
    font-size: 18px;
  }

  .workflow-step-chip.active .workflow-chip-label {
    font-size: 16px;
  }

  .workflow-step-chip.active .workflow-chip-number {
    font-size: 30px;
  } */
}

@media (max-width: 767px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .logo {
    width: 150px;
  }

  .header-actions {
    display: none;
  }

  .language-switcher {
    width: auto;
    justify-content: flex-end;
    gap: 2px;
  }

  .language-switcher a {
    font-size: 12px;
    padding: 6px 8px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.12);
  }

  .mobile-sticky-btn {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
  }

  .mobile-sticky-btn-whatsapp {
    background: #52CE53;
    color: #ffffff;
  }

  .mobile-sticky-btn-book {
    background: #FAC725;
    color: #1D221F;
  }

  .mobile-sticky-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
  }

  body {
    padding-bottom: 54px;
  }

  .workflow-section {
    padding: 56px 0 0;
  }

  .workflow-heading {
    margin-bottom: 26px;
  }

  .workflow-heading h2 {
    margin-bottom: 18px;
  }

  .workflow-pill {
    min-height: 42px;
    padding: 10px 22px;
    font-size: 14px;
  }

  .workflow-step-chip {
    flex: 0 0 33.3333%;
    min-width: 120px;
    min-height: 150px;
  }

  /* .workflow-step-chip::before,
  .workflow-step-chip::after,
  .workflow-step-chip-inner {
    top: 62px;
  } */

  .workflow-step-chip::after {
    width: 72px;
    height: 72px;
  }

  /* .workflow-step-chip.active::after {
    width: 118px;
    height: 118px;
  } */

  .workflow-step-chip-inner {
    width: 72px;
    height: 72px;
  }

  /* .workflow-step-chip.active .workflow-step-chip-inner {
    width: 118px;
    height: 118px;
  } */

  /* .workflow-step-chip .workflow-chip-label {
    font-size: 11px;
  } */

  /* .workflow-step-chip .workflow-chip-number {
    font-size: 18px;
  } */

  /* .workflow-step-chip.active .workflow-chip-label {
    font-size: 16px;
  } */

  /* .workflow-step-chip.active .workflow-chip-number {
    font-size: 28px;
  } */
    
  .workflow-panel-inner {
    padding: 28px 30px 30px;
  }

  .workflow-panel-inner h3 {
    margin-bottom: 14px;
  }

  .workflow-panel-note {
    max-width: 380px;
  }
}

/*------- patient feel section -------*/
.patient-feel-section {
  background: #ffffff;
  padding: 90px 0 0;
}

.patient-feel-container {
  margin: 0;
  width: 100% !important;
}

.patient-feel-top {
  display: grid;
  grid-template-columns: 1.45fr 1.9fr;
  /* grid-template-columns: 1.2fr 1.9fr; */
  gap: 35px;
  align-items: start;
  margin: 0 auto 60px auto;
  padding: 0 20px;
  /* margin-bottom: 45px; */
  justify-items: center;
  width: min(1400px, calc(100% - 32px));
}

.patient-feel-top h2 {
  margin: 0;
  font-size: clamp(20px, 2.85vw, 48px);
  line-height: 1.25;
  font-weight: 600;
  color: #333333;
}

.patient-feel-points {
  margin-top: 10px;
}

.patient-feel-points ul {
  margin: 0;
  padding-left: 22px;
}

.patient-feel-points li {
  margin: 0 0 8px;
  font-size: clamp(12px, 1.5vw, 25px);
  line-height: 1.5;
  font-weight: 400;
  color: #333333;
}

.patient-feel-visual {
  position: relative;
}

.patient-feel-image-wrap {
  overflow: hidden;
  background: #e9edf2;
}

.patient-feel-image {
  display: block;
  width: 100%;
  aspect-ratio: 120 / 53;
  object-fit: cover;
}

.float-word-wrap {
  display: inline-block;
  white-space: nowrap;
}

.float-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.float-letter.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.patient-feel-quote {
  position: absolute;
  right: 10%;
  bottom: 12%;
  /* max-width: 650px; */
  text-align: right;
}

.patient-feel-quote p {
  margin: 0;
  font-family: var(--crimson-font);
  font-size: clamp(20px, 3.3vw, 58px);
  line-height: 1.08;
  font-style: italic;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  padding: 0 20px;
}

/*------- consultation section -------*/
.consultation-section {
  background: #F6F9FF;
  padding: 100px 0 90px;
}

.consultation-container {
  /* max-width: 1280px; */
  padding: 0 20px;
}

.consultation-heading {
  text-align: center;
  margin-bottom: 120px;
}

.consultation-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 5.2vw, 98px);
  line-height: 1.08;
  font-weight: 600;
  color: #333333;
}

.consultation-heading p {
  margin: 0 auto;
  max-width: 950px;
  font-size: clamp(12px, 2vw, 36px);
  line-height: 1.45;
  font-weight: 500;
  color: #333333;
}

.consultation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  align-items: stretch;
}

.consultation-card {
  background: #ffffff;
  border-radius: 35px;
  padding: 26px 20px 22px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.consultation-icon {
  width: 115px;
  height: 115px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultation-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.consultation-card h3 {
  margin: 0 0 8px;
  font-size: clamp(15px, 2vw, 36px);
  line-height: 1.18;
  font-weight: 500;
  color: #333333;
}

.consultation-card p {
  margin: 0;
  font-size: clamp(12px, 1.45vw, 30px);
  line-height: 1.45;
  font-style: italic;
  font-weight: 400;
  color: #777777;
}

/*------- trusted section -------*/
.trusted-section {
  background: #ffffff;
  padding: 90px 0 0;
  overflow: hidden;
}

.trusted-container {
  width: 100% !important;
  margin: 0;
}

.trusted-heading {
  text-align: center;
  margin-bottom: 70px;
  padding: 0 20px;
}

.trusted-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 5.2vw, 98px);
  line-height: 1.1;
  font-weight: 600;
  color: #333333;
}

.trusted-heading .trusted-title-1 {
  display: inline-block;
  transform: translateX(-55px);
}

.trusted-heading .trusted-title-2 {
  display: inline-block;
  transform: translateX(55px);
}

.trusted-heading p {
  margin: 0 auto;
  max-width: 820px;
  font-size: clamp(12px, 2vw, 36px);
  line-height: 1.4;
  font-weight: 500;
  color: #333333;
}

.trusted-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 25px 0 60px;
}

.trusted-carousel-track {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.trusted-card {
  flex: 0 0 23%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  border-radius: 16px;
  opacity: 0.72;
  transform: translateY(0);
  z-index: 1;
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.trusted-card.active {
  opacity: 1;
  transform: translateY(-20px);
  z-index: 3;
}

.trusted-quote-card {
  background: transparent;
}

.trusted-quote-inner {
  background: #F6F9FF;
  border-radius: 35px;
  min-height: 450px;
  padding: 28px 25px;
  display: flex;
  flex-direction: column;
  text-align: left;
  box-shadow: 0 0 0 1px rgba(28, 43, 181, 0.03);
  transition:
    box-shadow 0.45s ease,
    background-color 0.45s ease;
}

.trusted-card.active .trusted-quote-inner {
  background: #f6f9ff;
  box-shadow: 0 18px 40px rgba(28, 43, 181, 0.08);
}

.trusted-quote-topmark,
.trusted-quote-bottommark {
  font-size: 80px;
  line-height: 0.5;
  font-weight: 700;
  color: #1C2BB5;
  font-family: 'Times New Roman', Times, serif;
}

.trusted-quote-topmark {
  margin-bottom: 6px;
}

.trusted-quote-stars {
  font-size: 40px;
  line-height: 1;
  color: #FAC725;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.trusted-quote-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  color: #333333;
  flex: 1;
  font-family: var(--font-sans);
}

.trusted-quote-bottom {
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.trusted-quote-name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: #333333;
  font-family: var(--font-sans);
}

.trusted-quote-role {
  font-size: 13px;
  line-height: 1.4;
  font-style: italic;
  color: #666666;
  font-family: var(--font-sans);
}

.trusted-quote-bottommark {
  align-self: flex-end;
}

/* .trusted-card-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #11B6E8;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 12px 8px;
  text-align: left;
}

.trusted-card-name {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.trusted-card-role {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 400;
}

.trusted-card-note {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 400;
  margin-top: 2px;
} */

.trusted-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 40px;
}

.trusted-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #DADADA;
  padding: 0;
  cursor: pointer;
}

.trusted-dot.active {
  background: #9A9A9A;
}

.trusted-note {
  margin: 0 auto 80px;
  padding: 0 20px;
  /* max-width: 860px; */
  max-width: 1330px;
  text-align: center;
  font-size: clamp(10px, 1.7vw, 30px);
  line-height: 1.45;
  color: #666666;
  font-style: italic;
  font-weight: 400;
}

.trusted-word-stop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 42px;
  padding: 15px 35px;
  color: #1C2BB5;
  background: #ffffff;
  border-radius: 40px;
  font-size: clamp(16px, 2.4vw, 39px);
  line-height: 1;
  font-weight: 600;
  flex-shrink: 0;
}

.trusted-word-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  /* width: auto; */
  margin: 0 auto;
  background: #1C2BB5;
  padding: 25px 0;
}

.trusted-word-viewport {
  --trusted-word-height: 60px;
  height: var(--trusted-word-height);
  overflow: hidden;
  position: relative;
  display: block;
  width: 1px;
  min-width: 1px;
  flex: 0 0 auto;
  transition: width 0.45s ease;
}

.trusted-word-track {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s ease-in-out;
  will-change: transform;
}

.trusted-word-track.is-no-transition {
  transition: none;
}

.trusted-word-item {
  height: var(--trusted-word-height);
  min-height: var(--trusted-word-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  white-space: nowrap;
  text-align: left;
  font-size: 39px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
}

/*------- reserve cta section -------*/
.reserve-cta-section {
  background: #F4C51E;
}

.reserve-cta {
  display: block;
  text-decoration: none;
}

.reserve-cta-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 50px 20px;
  position: relative;
}

.reserve-cta-text {
  text-align: center;
}

.reserve-cta-text h2 {
  margin: 0;
  font-size: clamp(10px, 2.8vw, 48px);
  line-height: 1.15;
  font-weight: 600;
  color: #333333;
}

.reserve-cta-text p {
  margin: 10px 0 0;
  font-size: clamp(10px, 1.45vw, 24px);
  line-height: 1.2;
  font-weight: 300;
  color: #333333;
}

.reserve-cta-icon {
  flex-shrink: 0;
  width: 83px;
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reserve-cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ------- contact lead section ------- */
.contact-lead-section {
  background: #f3f5f8;
  padding: 90px 0 0;
  overflow: hidden;
}

.contact-lead-grid {
  display: grid;
  grid-template-columns: minmax(560px, 240px) minmax(0, 1fr);
  align-items: end;
  gap: 20px;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-lead-image-wrap {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: end;
  min-height: 100%;
  overflow: hidden;
}

.contact-lead-image {
  width: 120%;
  max-width: 620px;
  height: auto;
  display: block;
  max-width: none;
  scale: 1.5;
  transform: translateX(-70px) translateY(-80px);
}

.contact-lead-content {
  color: #333333;
  /* max-width: 620px; */
  justify-self: center;
  padding-bottom: 40px;
}

.contact-lead-content h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 5.2vw, 98px);
  line-height: 1.05;
  font-weight: 600;
}

.contact-lead-content p {
  margin: 0 0 32px;
  font-size: clamp(12px, 2vw, 36px);
  line-height: 1.4;
  color: #333333;
}

.contact-lead-form {
  max-width: 520px;
  width: 100%;
}

.contact-form-group {
  margin-bottom: 22px;
}

.contact-form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  color: #333333;
}

.contact-form-group label span {
  color: #d93025;
}

.contact-form-group input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1.9px solid #C4C4C4;
  background: #ffffff;
  font-size: 16px;
  color: #333333;
  outline: none;
  font-family: var(--font-sans);
}

.contact-form-group input:focus {
  border-color: #1C2BB5;
}

.contact-form-group-submit {
  display: flex;
  justify-content: flex-end;
}

.contact-submit-btn {
  min-width: 230px;
  min-height: 55px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: #1C2BB5;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
}

.contact-submit-btn:hover {
  opacity: 0.92;
}

.form-message {
  margin-top: 12px;
  font-size: 14px !important;
}


/*------- faq section -------*/
.faq-section {
  background: #fff;
  padding: 90px 0 90px;
}

.faq-container {
  padding: 0 20px;
}

.faq-heading {
  text-align: center;
  margin-bottom: 80px;
}

.faq-heading h2 {
  margin: 0;
  font-size: clamp(16px, 3.1vw, 48px);
  line-height: 1.15;
  font-weight: 600;
  color: #333333;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  max-width: min(1150px, calc(100% - 92px));
}

.faq-item {
  background: #F8F9FB;
  border-radius: 40px;
  overflow: hidden;
}

.faq-item.active {
  background: #F3F5FF;
}

.faq-question {
  min-height: 110px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 28px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-question span:first-child {
  font-size: clamp(14px, 1.7vw, 30px);
  line-height: 1.35;
  font-weight: 500;
  color: #333333;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 35px;
  line-height: 1;
  font-weight: 600;
  color: #1C2BB5;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-answer {
  padding: 0 80px 42px;
  color: #333333;
  font-weight: 300;
  font-size: clamp(12px, 1.4vw, 21px);
  line-height: 1.6;
}

.faq-answer p {
  margin: 0 0 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 0 0 12px;
  padding-left: 18px;
}

.faq-answer li {
  margin-bottom: 4px;
}

/* ------- unsure section ------- */
.unsure-section {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 68%, #1C2BB5 68%, #1C2BB5 100%);
  padding: 70px 0 0;
}

.unsure-container {
  /* max-width: 1180px; */
  padding: 0 20px;
}

.unsure-card {
  background: #F6F9FF;
  border-radius: 26px;
  padding: 44px 56px 34px;
  position: relative;
  display: grid;
  grid-template-columns: 2.1fr 0.9fr;
  align-items: end;
  overflow: visible;
}

/* .unsure-content {
  max-width: 620px;
} */

.unsure-content h2 {
  margin: 0 0 35px;
  font-size: clamp(24px, 5.2vw, 98px);
  line-height: 1.02;
  font-weight: 700;
  color: #000000;
}

.unsure-content p {
  margin: 0 0 40px;
  /* max-width: 560px; */
  font-size: clamp(12px, 1.5vw, 24px);
  line-height: 1.5;
  font-weight: 300;
  color: #333333;
}

.unsure-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 620px;
  max-width: 100%;
  min-height: 52px;
  padding: 22px 35px;
  border-radius: 999px;
  background: #F4C51E;
  color: #333333;
  text-decoration: none;
  font-size: clamp(11px, 1.35vw, 24px);
  line-height: 1.3;
  font-weight: 300;
}

.unsure-btn-span {
  color: #333333;
  font-size: clamp(10px, 1.35vw, 24px);
  line-height: 1.3;
  font-weight: 500;
}

.unsure-btn img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.unsure-image-wrap {
  position: absolute;
  right: 0px;
  bottom: 0;
  width: min(100%, 700px);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.unsure-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ------- footer ------- */
.site-footer {
  background: #1C2BB5;
  color: #ffffff;
  padding: 48px 0 28px;
}

.footer-container {
  padding: 0 20px;
  /* max-width: 1180px; */
}

.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-right: 120px;
}

.footer-column h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-column p {
  margin: 0;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.7;
  font-weight: 300;
  color: #ffffff;
}

.footer-floating-actions {
  position: fixed;
  right: 30px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.footer-floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /* z-index: 999; */
}

.footer-back-top {
  background: #ffecb9de;
}

.footer-back-top:hover {
  background: #FFECB9;
}

.footer-whatsapp {
  background: #51D152;
  animation: whatsapp-breath 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes whatsapp-breath {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    transform: scale(1);
  }
}

.footer-floating-btn img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 300;
  color: #ffffff;
}

.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.footer-socials a {
  color: #ffffff;
  transition: opacity 0.25s ease;
}

.footer-socials a img {
  height: 30px;
}

.footer-socials a:hover {
  opacity: 0.7;
}

.footer-floating-btn {
  color: #ffffff;
}

.footer-back-top {
  color: #333;
}

.footer-whatsapp {
  color: #fff;
}



































 




















.content-section {
  padding: 72px 0;
  background: #fff;
  color: #1b1b1b;
}

.content-section:nth-child(even) {
  background: #ffffff;
}

.content-section h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin: 0 0 18px;
  line-height: 1.2;
}

.content-section p {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.75;
  max-width: 900px;
}

.contact-section {
  text-align: center;
}

/* Desktop - small */
@media (min-width: 992px) and (max-width: 1166px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 380px);
  }

  .hero-image img {
    width: 460px;
  }

  .btn-primary {
    font-size: 22px;
  }

}
@media (max-width: 1315px) {
  .trusted-note {
    max-width: 1000px;
  }

  .consultation-heading p {
    max-width: 720px;
  }

  .gamechanger-list {
    max-width: 1000px;  
  }

  .shield-image {
    min-height: 700px;
  }

  .shield-cards {
    width: min(1000px, calc(100% - 32px));
  }

  .shield-card-icon {
    width: 165px;
    height: 165px;
  }

  .unsure-card {
    grid-template-columns: 1.2fr 0.9fr;
  }

  .trusted-card {
    flex: 0 0 28%;  
  }
}


@media (max-width: 1166px) {
  .site-header {
    padding: 20px 0;
  }

  .logo {
    height: auto;
    width: 180px;
  }

  .trust-section {
    background: #F6F9FF;
  }

  .trusted-note {
    max-width: 890px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 300px);
    gap: 28px;
  }

  .trust-card {
    min-height: 230px;
    border-radius: 15px;
    background: #fff;
    border: none;
  }

  .trust-subtitle, 
  .trust-heading h2 {
    color: #333333;
  }

  .trusted-quote-text,
  .trusted-quote-name {
    font-size: 16px;
  }

  .trusted-quote-role {
    font-size: 12px;
  }

  .trusted-quote-topmark, 
  .trusted-quote-bottommark {
    font-size: 65px;
  }
  

  .accreditation-heading h2 {
    max-width: 650px;
    color: #333333;
  }

  .accreditation-logos {
    gap: 28px 34px;
  }

  .accreditation-logo {
    min-width: 80px;
  }

  .accreditation-logo img {
    max-height: 60px;
    min-height: 46px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.95;
  }

  .consultation-heading p {
    max-width: 620px;
  }

  .potential-heading .potential-title-1 {
    --start-x: -200px;
    --final-x: -100px;
  }

  .potential-heading .potential-title-2 {
    --start-x: 200px;
    --final-x: 100px;
  }

  .before-image-wrap {
    min-width: 430px !important;
  }

  .potential-image-wrap {
    min-width: 440px;
  }

  .generic-heading p {
    max-width: 700px;
  }

  .generic-compare {
    grid-template-columns: 1fr 90px 1fr;
  }

  .generic-arrow img {
    width: 85px;
  }

  .generic-pill {
    min-width: 300px;
    padding: 1rem 1.8rem;
    font-size: 25px;
  }

  .generic-box {
    padding: 100px 38px 28px;
  }

  .generic-icon {
    width: 80px;
    height: 80px;
  }

  .generic-icon img {
    max-height: 40px;
    max-width: 40px;
  }

  .generic-item {
    gap: 20px;
  }

  .generic-item + .generic-item {
    margin-top: 50px;
  }

  .protocol-highlight::before {
    /* transform: translateY(-30%); */
    height: 60px;
  }

  .fitt-heading p {
    max-width: 900px;
  }

  .fitt-heading {
    margin-bottom: 110px;
  }

  .man-image {
    transform: translateX(-80px);
  }

  .benefits-right {
    padding: 20px 0 80px;
    gap: 40px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-item {
    grid-template-columns: 60px 1fr;
  }

  .gamechanger-list {
    max-width: 700px;  
  }

  .gamechanger-card {
    padding: 30px 25px;
    gap: 20px;
  }
  
  .gamechanger-icon {
    width: 70px;
    height: 70px;
  }

  .shield-image {
    min-height: 600px;
  }

  .shield-cards {
    width: min(900px, calc(100% - 32px));
  }

  .shield-card {
    padding: 30px 15px 40px;
  }

  .shield-card-icon {
    width: 135px;
    height: 135px;
  }

  .consultation-card {
    min-height: 300px;
  }

  .reserve-cta-icon {
    width: 55px;
    height: 55px;
  }

  .reserve-cta-inner {
    gap: 20px;
    padding: 40px 20px;
  }

  .contact-lead-grid {
    grid-template-columns: minmax(480px, 240px) minmax(0, 1fr);
  }

  .contact-lead-image {
    /* width: 110%; */
    transform: translateX(-60px) translateY(-70px);
  }

  .footer-floating-btn {
    width: 50px;
    height: 50px;
  }

  .footer-floating-btn img {
    width: 20px;
    height: 20px;    
  }

  .whatsapp-icon {
    width: 30px;
    height: 30px;
  }

  .unsure-image-wrap {
    width: min(100%, 600px);
  }

  .unsure-content {
    max-width: 550px;
  }
  
}

/* Tablet */
@media (max-width: 991px) {
  .site-header {
    padding: 14px 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .logo {
    width: 180px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 16px;
  }

  .header-cta-text {
    font-size: 16px;
  }

  .header-cta-icon {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding: 48px 30px 0;
  }

  .hero::after {
    height: 125%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .hero-content {
    padding: 0;
    order: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    text-align: center;
  }

  .hero-subtitle {
    max-width: 520px;
  }

  .hero-subcontent {
    padding: 0;
    text-align: center;
  }

  .hero-note{
    display: none;
  }

  .hero-image {
    order: 2;
  }

  .hero-image img {
    width: 100%;
    max-width: 450px;
  }

  .accreditation-section {
    padding: 40px 0 30px;
  }

  .accreditation-heading h2 {
    max-width: 450px;
    /* margin-bottom: 24px; */
  }

  .accreditation-logos {
    gap: 28px 18px;
  }

  .accreditation-logo img {
    max-height: 42px;
    max-width: 110px;
  }

  .potential-section {
    padding: 70px 0 56px;
  }

  .potential-heading {
    margin-bottom: 34px;
  }

  .potential-heading p {
    max-width: 585px;
  }

  .potential-compare {
    max-width: 100%;
    /* gap: 18px; */
    padding: 0 60px 20px;
  }
    
  .before-image-wrap {
    min-width: 230px !important;
  }

  .potential-image-wrap {
    min-width: 240px;
  }

  /* .before-card {
    margin-top: 18px;
  } */

  .potential-note p {
    max-width: 240px;
    /* max-width: 100%; */
  }

  .potential-arrow {
    width: 56px;
    /* height: 42px; */
  }

  .potential-footer-title {
    font-size: 20px;
  }

  .potential-footer-note {
    font-size: 17px;
  }

  .generic-section {
    padding: 72px 0 60px;
  }

  .generic-heading {
    margin-bottom: 34px;
  }

  .generic-compare {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .generic-item {
    gap: 10px;
  }

  .generic-item + .generic-item {
    margin-top: 40px;
  }

  .generic-arrow {
    order: 2;
    transform: rotate(90deg);
  }

  .generic-panel-left {
    order: 1;
  }

  .generic-panel-right {
    order: 3;
  }

  .generic-box {
    min-height: auto;
    padding: 80px 40px 38px;
    border-radius: 13px;
  }

  .generic-icon {
    width: 65px;
    height: 65px;
  }

  .generic-icon img {
    max-height: 34px;
    max-width: 34px;
  }

  .generic-pill {
    min-width: 260px;
    font-size: 20px;
  }

  .protocol-section {
    padding: 72px 0 70px;
  }

  .protocol-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 60px;
    row-gap: 40px;
  }

  .protocol-title-wrap {
    text-align: center;
  }

  .protocol-right {
    text-align: center;
    max-width: 560px;
    width: 100%;
  }

  .protocol-highlight {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 0;
    text-align: right;
  }

  .protocol-highlight::before {
    content: "";
    position: absolute;
    left: 0;
    top: auto;
    bottom: 0.08em;
    transform: none;
    width: calc(50vw + 50%);
    max-height: 40px;
    /* height: 0.95em; */
    background: #FFE6A1;
    z-index: -1;
  }

  .protocol-highlight span {
    display: inline;
  }

  .protocol-title {
    max-width: 100%;
  }

  .protocol-content {
    max-width: 100%;
  }

  .protocol-content p {
    margin: 0 0 35px;
  }

  .protocol-highlight-row {
    grid-column: auto;
  }

  /* .protocol-highlight {
    width: calc(100% + 40px);
    margin-left: -12px;
    max-width: none;
  } */

  .protocol-features {
    gap: 30px 15px;
    max-width: 100%;
  }

  .protocol-feature {
    align-items: center;
    text-align: center;
  }

  .protocol-icon {
    max-height: 80px;
  }

  .fitt-section {
    padding: 72px 0 100px;
  }

  .fitt-section::after {
    /* height: 180px; */
    display: none;
  }

  .fitt-heading {
    margin-bottom: 40px;
  }

  .fitt-heading h2 {
    margin-bottom: 40px;
  }

  .fitt-heading p {
    max-width: 620px;
  }

  .fitt-subheading {
    /* display: none; */
    margin-bottom: 20px;
  }

  .fitt-video-wrap {
    width: 100%;
    margin: 0;
    border-radius: 0;    
    /* max-width: 100%; */
  }

  .approach-section {
    padding: 72px 0 70px;
  }

  .approach-heading {
    margin-bottom: 34px;
  }

  .approach-grid {
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
    gap: 25px;
  }

  .approach-card h3 {
    min-height: 3.8em;
  }

  .benefits-section {
    padding: 72px 0 56px;
  }
  
  .benefits-container {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .benefits-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right"
      "person";
    padding: 60px 28px 0;
    gap: 45px;
    border-radius: 0px;
  }

  .benefits-left {
    align-items: center;
    text-align: center;
  }

  .benefits-title {
    justify-content: center;
    gap: 18px;
  }

  .benefits-right {
    padding: 0 0 10px;
    gap: 50px;
  }

  .benefit-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
  }

  .benefit-content p {
    max-width: 635px;
  }

  .benefit-stats {
    justify-content: center;
  }

  .benefits-person-wrap {
    justify-content: center;
    align-items: flex-end;
    margin-top: 0;
    position: relative;
    z-index: 1;
  }

  .man-image {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    z-index: auto;
    margin: 0 auto;
  }

  .benefits-person {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
  }
  
  .benefits-disclaimer {
    margin-top: 25px;
    /* font-size: 11px; */
  }

  .compare-section {
    padding: 72px 0 80px;
  }

  .compare-slide-section {
    padding: 72px 0 0px;
  }

  .compare-table {
    grid-template-columns: 0.95fr 1fr 1fr;
  }

  .compare-bottom {
    /* grid-template-columns: 1fr 320px; */
    gap: 30px;
    margin-top: 60px;
  }

  .compare-message p {
    margin-bottom: 40px;
  }

  /* .compare-person {
    max-width: 320px;
  } */

  .cta-strip-section {
    padding: 38px 0 36px;
  }

  .contact-lead-section {
    padding: 60px 0 60px;
  }

  .contact-lead-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .contact-lead-image-wrap {
    min-height: auto;
    justify-content: center;
    overflow: visible;
  }

  .contact-lead-image {
    /* width: 100%;
    max-width: 360px;
    transform: none; */
    display: none;
  }

  .contact-form-group-submit{
    justify-content: center;
  }

  .contact-form-group-submit .contact-submit-btn{
    max-width: 230px;
  }

  .contact-lead-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }

  .contact-lead-form {
    width: 100%;
    max-width: 520px;
    text-align: left;
  }

  .contact-form-group label {
    font-size: 16px;
  }

  .contact-submit-btn {
    width: 100%;
  }

    .gamechanger-section {
    padding: 72px 0 56px;
  }

  .gamechanger-heading {
    margin-bottom: 28px;
    text-align: center;
  }

  .gamechanger-heading h2 {
    max-width: 460px;
    margin: 0 auto;
  }

  .gamechanger-list {
    gap: 24px;
    margin: 0 auto;
  }

  .gamechanger-card {
    padding: 24px 24px;
    grid-template-columns: 72px 1fr;
    gap: 20px;
  }

  .gamechanger-icon {
    width: 72px;
    height: 72px;
  }

    .shield-section {
    padding: 72px 0 72px;
  }

  .shield-heading {
    margin-bottom: 40px;
  }

  .shield-heading p {
    max-width: 620px;
  }

  .shield-visual-wrap {
    padding-bottom: 90px;
  }

  .shield-cards {
    width: min(700px, calc(100% - 32px));
    gap: 18px;
  }

  .shield-card {
    min-height: 170px;
    padding: 20px 14px 18px;
  }

  .shield-card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 14px;
  }

  .shield-image {
    min-height: 500px;
  }  

    .patient-feel-section {
    padding: 72px 0 0;
  }

  .patient-feel-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }

  .patient-feel-top h2 {
    text-align: center;
  }

  .patient-feel-points {
    max-width: 760px;
    margin: 0 auto;
  }

  .patient-feel-image {
    aspect-ratio: 16 / 9;
  }

  /* .patient-feel-quote {
    right: 18px;
    bottom: 16px;
    max-width: 460px;
  } */

    .consultation-section {
    padding: 72px 0 72px;
  }

  .consultation-heading {
    margin-bottom: 30px;
  }

  .consultation-heading p {
    max-width: 520px;
  }

  .consultation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .consultation-card {
    min-height: 220px;
  }

  .consultation-icon {
    width: 80px;
    height: 80px;
  }

  .trusted-section {
    padding: 72px 0 0;
  }

  .trusted-card {
    flex: 0 0 40%;
  }

  .trusted-quote-inner {
    min-height: 400px;
    padding: 25px 22px;
  }

  .trusted-note {
    max-width: 770px;
  }

  /* .trusted-card-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
  } */

  .trusted-heading .trusted-title-1 {
    transform: translateX(0px);
  }

  .trusted-heading .trusted-title-2 {
    transform: translateX(0px);
  }

  .faq-question {
    min-height: 80px;
    padding: 18px 38px;
  }

  .faq-answer {
    padding: 0 38px 42px;
  }

  .faq-item {
    border-radius: 20px;
  }

  .unsure-section {
    background: #ffffff;
    padding: 56px 0 30px;
  }

  .unsure-card {
    grid-template-columns: 1fr;
    padding: 0 0 28px;
    background: transparent;
    text-align: center;
  }

  .unsure-content {
    max-width: 100%;
    order: 2;
  }

  .unsure-content p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .unsure-btn {
    min-width: 0;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding-left: 20px;
    justify-content: center;
  }

  .unsure-image-wrap {
    position: relative;
    width: min(560px, 100%);
    margin: 0 auto 18px;
    order: 1;
    pointer-events: auto;
    overflow: visible;
    padding-top: 10px;
  }

  .unsure-image-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80%;
    background: #F6F9FF;
    border-radius: 20px;
    z-index: 1;
  }

  .unsure-image {
    position: relative;
    z-index: 2;
    transform: translateX(-15%);
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-right: 0;
  }

  .footer-floating-actions {
    position: fixed;
    right: 40px;
    bottom: 70px;    
    margin-top: 8px;
    /* flex-direction: row; */
    justify-content: flex-end;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .language-switcher a {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .site-header {
    padding: 10px 0;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: row;
    /* flex-direction: column; */
  }

  .logo {
    width: 150px;
  }

  .language-switcher {
    width: 100%;
    justify-content: flex-end;
  }

  .language-switcher a {
    font-size: 13px;
    padding: 7px 10px;
  }

  .hero {
    padding: 36px 20px 0;
  }

  .hero-content {
    max-width: 510px;
  }

  .hero-content h1 {
    max-width: 480px;
  }

  .hero-subtitle {
    max-width: 420px;
  }

  .content-section p {
    max-width: 100%;
  }

  .hero-image img {
    width: 100%;
    max-width: 250px;
  }

  .content-section {
    padding: 52px 0;
  }

  .btn-primary {
    width: 100%;
    font-size: 18px;
  }

  .appt-btn-icon {
    width: 35px;
    height: 35px;
    margin-left: 10px;
  }

    .trust-section {
    padding: 56px 0 64px;
  }

  .trust-heading {
    margin-bottom: 32px;
  }

  /* .trust-subtitle {
    font-size: 16px;
  } */

  /* .trust-heading h2 {
    font-size: 30px;
  } */

  .trust-card {
    min-height: auto;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .trust-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }

  .trust-card h3 {
    font-size: 18px;
  }

  .trust-card p {
    font-size: 14px;
  }

  .accreditation-section {
    overflow: hidden;
  }

  .accreditation-section .container {
    overflow: hidden;
  }

  .accreditation-logos {
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    gap: 0 0;
    width: max-content;
    animation: accreditationLogoLoop 18s linear infinite;
    will-change: transform;
  }

  .accreditation-logo {
    flex: 0 0 auto;
    min-width: 95px;
    padding: 0 18px;
  }

  .accreditation-logo img {
    max-height: 42px;
    min-height: auto;
    max-width: 100px;
    width: auto;
  }

  .accreditation-logos.is-paused {
    animation-play-state: paused;
  }

  .potential-section {
    padding: 56px 0 44px;
  }

  /* .potential-heading h2 {
    font-size: 36px;
  } */

  .potential-heading .potential-title-1 {
    --start-x: -50px;
    --final-x: -30px;
  }

  .potential-heading .potential-title-2 {
    --start-x: 50px;
    --final-x: 30px;
  }

  .potential-heading p {
    /* font-size: 14px; */
    max-width: 365px;
  }

  .potential-compare {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 530px;
    padding-bottom: 0;
  }

  /* .before-card {
    margin-top: 0;
  } */

  .potential-card {
    align-items: stretch;
  }

  .potential-label {
    margin-bottom: 10px;
    text-align: center;
    /* font-size: 22px; */
  }

  .potential-image-wrap {
    max-width: 350px;
  }

  .before-image-wrap {
    border-right: 3px solid #B3B3B3;
  }

  .potential-note {
    margin-top: 15px;
  }

  /* .potential-note p {
    font-size: 14px;
  } */

  .potential-arrow {
    width: 46px;
    /* height: 38px; */
  }

  .potential-footer-title {
    font-size: 12px;
  }

  .potential-footer-note {
    font-size: 11px;
  }

  .generic-section {
    padding: 56px 0 60px;
  }

  /* .generic-heading h2 {
    font-size: 36px;
  } */

  .generic-heading p {
    /* font-size: 17px; */
    max-width: 500px;
  }

  .generic-box {
    padding: 50px 25px 30px;
    /* border-radius: 18px; */
  }

  .generic-pill {
    min-width: 170px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .generic-item {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .generic-item + .generic-item {
    margin-top: 24px;
  }

  .generic-icon {
    width: 55px;
    height: 55px;
  }

  .generic-icon img {
    width: 30px;
    height: 30px;
  }

  /* .generic-text h3 {
    font-size: 19px;
  } */

  /* .generic-text p {
    font-size: 14px;
  } */

  .generic-arrow img {
    width: 56px;
  }

  .protocol-section {
    padding: 56px 0 56px;
  }

  .protocol-top {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    max-width: 100%;
    row-gap: 20px;
  }

  .protocol-title-wrap,
  .protocol-right {
    grid-column: auto;
    grid-row: auto;
  }

  .protocol-right {
    max-width: 490px;
  }

  /* .protocol-title {
    max-width: 240px;
    font-size: 42px;
  } */

  .protocol-content {
    max-width: 100%;
  }

  .protocol-highlight {
    width: 100%;
    margin-top: 30px;
    text-align: center;
  }

  .protocol-highlight::before {
    left: 0;
    /* width: calc(50vw + 50%); */
    width: 100%;
    bottom: 0.06em;
    max-height: 35px;
    /* height: 0.9em; */
  }

  .protocol-highlight span {
    transform: none;
  }

  /* .protocol-highlight span {
    font-size: 16px;
    transform: translateY(-18px)
  } */

  .protocol-content p {
    margin-bottom: 20px;
    /* font-size: 17px; */
  }

  .protocol-features {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .protocol-icon {
    /* width: 56px;
    height: 56px; */
    max-height: 65px;
    margin-bottom: 12px;
  }

  /* .protocol-feature h3 {
    font-size: 20px;
  } */

  .protocol-feature p {
    max-width: 90%;
    /* font-size: 14px; */
  }

  .fitt-section {
    padding: 56px 0 80px;
  }

  .fitt-section::after {
    height: 120px;
  }

  .fitt-heading {
    margin-bottom: 35px;
  }

  .fitt-heading h2 {
    margin-bottom: 18px;
  }

  .fitt-heading p {
    max-width: 420px;
  }

  .fitt-subheading {
    margin-bottom: 15px;
  }

  .fitt-video {
    aspect-ratio: 16 / 9;
  }

  .approach-section {
    padding: 56px 0 56px;
  }

  .approach-heading {
    margin-bottom: 24px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    max-width: 480px;
  }

  .approach-card {
    border-radius: 18px;
    padding: 18px 14px 14px;
  }

  .approach-card h3 {
    min-height: auto;
    margin-bottom: 14px;
  }

  .approach-image-wrap {
    border-radius: 14px;
  }

  .approach-img,
  .approach-img-3 {
    transform: none;
  }

  .benefits-section {
    padding: 56px 0 44px;
  }

  .benefits-container {
    width: 100%;
  }

  .benefits-panel {
    gap: 45px;
  }

  .benefits-title {
    gap: 14px;
  }

  /* .benefits-number {
    font-size: 72px;
  } */

  /* .benefits-title-text {
    margin-top: 6px;
  } */

  /* .benefits-title-text span {
    font-size: 24px;
  } */

  .benefits-right {
    /* gap: 24px; */
    padding-bottom: 8px;
  }

  .benefit-icon {
    /* width: 44px; */
    min-height: 60px;
  }

  /* .benefit-content h3 {
    font-size: 18px;
  } */

  /* .benefit-content p {
    font-size: 13px;
  } */

  .benefit-stats {
    gap: 22px;
    margin-top: 8px;
  }

  /* .benefit-stat-number {
    font-size: 24px;
  } */

  /* .benefit-stat-label {
    font-size: 11px;
  } */

  /* .benefits-person {
    max-width: 250px;
    max-height: 250px;
  } */

  .compare-section {
    padding: 16px 0 40px;
  }

  .compare-slide-section {
    background: #fff
  }

  /* .compare-desktop {
    display: none;
  }

  .compare-mobile {
    display: block;
  }

  .compare-mobile-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 290px;
    margin: 0 auto;
  }

  .compare-mobile-card {
    background: #fff;
    border: 2px solid #E1E1E1; //remove first
    border-radius: 18px;
    overflow: hidden;
  }

  .compare-mobile-card-featured {
    border-color: #1C2BB5;
  }

  .compare-mobile-body {
    padding: 0 10px;
  }

  .compare-mobile-row {
    padding: 12px 8px 11px;
    border-bottom: 1px solid #D9D9D9;
    text-align: center;
  }

  .compare-mobile-row:last-child {
    border-bottom: none;
  }

  .compare-mobile-row span {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    line-height: 1.25;
    color: #9B9B9B;
  }

  .compare-mobile-row strong {
    display: block;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    color: #222222;
  } */

  .compare-row-emphasis strong {
    font-size: 18px;
  }

  .compare-bottom {
    grid-template-columns: 1fr;
    grid-template-areas:
        "message"
        "person"
        "note";
    gap: 18px;
    margin-top: 26px;
    text-align: center;
    justify-items: center;
    padding: 0 20px;
  }

  .compare-message {
    /* max-width: 300px; */
    margin: 0 auto;
  }

  .compare-message p {
    margin: 0px 0 18px;
    /* font-size: 22px; */
  }

  /* .compare-line-1,
  .compare-line-3 {
    transform: translateX(-30px);
  } */

  /* .compare-line-2,
  .compare-line-4 {
    transform: translateX(30px);
  } */

  .compare-line-1,
  .compare-line-3 {
    --line-final-x: -30px;
    --line-start-x: -70px;
  }

  .compare-line-2,
  .compare-line-4 {
    --line-final-x: 30px;
    --line-start-x: 70px;
  }

  .compare-note {
    /* max-width: 260px; */
    margin: 15px auto;
    /* font-size: 12px; */
  }

  .compare-person-wrap {
    max-width: 320px;
  }

  .compare-person {
    /* max-width: 145px; */
    border-radius: 12px;
  }

  .cta-strip-section {
    padding: 16px 0 14px;
  }

  .cta-strip-section h2 {
    margin-bottom: 6px;
  }

    .gamechanger-section {
    padding: 56px 0 44px;
  }

  .gamechanger-heading {
    margin-bottom: 22px;
    text-align: center;
  }

  .gamechanger-heading h2 {
    /* max-width: 260px; */
    margin: 0 auto;
  }

  .gamechanger-list {
    gap: 22px;
    max-width: 420px;
  }

  .gamechanger-card {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
    justify-items: center;
    padding: 28px 20px 30px;
    border-radius: 15px;
  }

  .gamechanger-icon {
    width: 62px;
    height: 62px;
  }

  .gamechanger-content h3 {
    margin-bottom: 8px;
  }

  .gamechanger-main {
    margin-bottom: 2px;
  }

  .gamechanger-footer {
    max-width: 300px;
    margin-top: 22px;
    font-size: 11px;
  }

  .shield-section {
    padding: 56px 0 56px;
  }

  .shield-section::after {
    height: 280px;
  }

  .shield-heading {
    margin-bottom: 30px;
  }

  .shield-heading h2 {
    margin-bottom: 12px;
  }

  .shield-heading p {
    max-width: 450px;
  }

  .shield-visual-wrap {
    padding-bottom: 0;
  }

  .shield-image-box {
    border-radius: 8px;
  }

  .shield-image {
    min-height: 200px;
  }

  .shield-cards {
    position: static;
    transform: none;
    width: 100%;
    margin-top: -35px;
    /* width: min(500px, calc(100% - 32px)); */
    /* grid-template-columns: 1fr; */
    gap: 14px;
    /* max-width: 260px; */
  }

  .shield-card {
    min-height: auto;
    padding: 15px 10px;
    border-radius: 10px;
  }

  .shield-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  /* .shield-card h3 {
    font-size: 16px;
  } */

  .workflow-step-chip-inner {
    transform: translate(0%, -10%) !important;
  }

  /* .workflow-heading .workflow-title-1{
    display: inline-block;
    transform: translateX(-25px);
  }

  .workflow-heading .workflow-title-2{
    display: inline-block;
    transform: translateX(25px);
  } */

  .workflow-title-1 {
    --start-x: -40px;
    --final-x: -25px;
  }

  .workflow-title-2 {
    --start-x: 40px;
    --final-x: 25px;
  }

  .patient-feel-section {
    padding: 56px 0 56px;
  }

  .patient-feel-top {
    gap: 16px;
    margin-bottom: 18px;
  }

  .patient-feel-top h2 {
    text-align: center;
  }

  .patient-feel-points {
    max-width: 480px;
    margin: 0 auto;
  }

  .patient-feel-points ul {
    padding-left: 18px;
  }

  .patient-feel-image {
    aspect-ratio: 4 / 3;
  }

  .patient-feel-quote {
    position: static;
    max-width: 100%;
    margin-top: 18px;
    /* text-align: center; */
  }

  .patient-feel-quote p {
    color: #333333;
    text-shadow: none;
    font-size: clamp(20px, 3.3vw, 58px);
    line-height: 1.15;
  }

    .consultation-section {
    padding: 56px 0 56px;
  }

  .consultation-heading {
    margin-bottom: 30px;
  }

  .consultation-heading h2 {
    margin-bottom: 12px;
  }

  .consultation-heading p {
    max-width: 390px;
  }

  .consultation-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .consultation-card {
    min-height: 170px;
    padding: 18px 12px 16px;
    border-radius: 14px;
  }

  .consultation-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }

  /* .consultation-card h3 {
    font-size: 14px;
  }

  .consultation-card p {
    font-size: 11px;
  } */

  .trusted-section {
    padding: 56px 0 0;
  }

  .trusted-heading {
    margin-bottom: 24px;
  }

  .trusted-card {
    flex: 0 0 70%;
  }

  .trusted-card.active {
    transform: translateY(-16px);
  }

  .trusted-quote-inner {
    min-height: 300px;
    padding: 24px 20px;
  }

  .trusted-quote-text, 
  .trusted-quote-name {
    font-size: 14px;
    line-height: 1.5;
  }

  .trusted-quote-role {
    font-size: 11px;
  }

  .trusted-quote-stars {
    font-size: 22px;
  }

  .trusted-quote-topmark,
  .trusted-quote-bottommark {
    font-size: 40px;
  }

  .trusted-note {
    max-width: 420px;
    margin-bottom: 40px;
  }

  .trusted-word-stop {
    min-width: 82px;
    min-height: 36px;
    /* font-size: 15px; */
  }

  .trusted-word-switch {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* width: auto; */
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
  }

  .trusted-word-viewport {
    height: var(--trusted-word-height);
    display: block;
    max-width: 100%;
  }

  .trusted-word-track {
    max-width: 100%;
  }

  .trusted-word-item {
    height: var(--trusted-word-height);
    min-height: var(--trusted-word-height);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: max-content;
    max-width: none;
    font-size: 30px;
  }

  .reserve-cta-inner {
    min-height: 66px;
    gap: 10px;
    padding: 18px 22px;
  }

  .reserve-cta-icon {
    width: 28px;
    height: 28px;
  }

  .reserve-cta-text h2 {
    font-size: 15px;
  }

  .reserve-cta-text p {
    font-size: 10px;
  }

  .contact-form-group label {
    font-size: 14px;
  }

    .faq-section {
    padding: 56px 0 56px;
  }

  .faq-heading {
    margin-bottom: 32px;
  }

  .faq-list {
    gap: 20px;
  }

  .faq-item {
    border-radius: 5px;
  }

  .faq-question {
    padding: 18px 28px;
    gap: 14px;
    min-height: unset;
  }

  /* .faq-question span:first-child {
    font-size: 14px;
  } */

  .faq-icon {
    font-size: 25px;
  }

  .faq-answer {
    padding: 0 28px 20px;
    font-size: 12px;
    line-height: 1.55;
  }

  .unsure-section {
    background: #ffffff;
    padding: 0px 0 20px;
    right: 40px;
  }

  .unsure-container {
    max-width: 100%;
  }

  .unsure-card {
    background: transparent;
    border-radius: 0;
    padding: 0 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: visible;
  }

  .unsure-image-wrap {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto 18px;
    display: flex;
    justify-content: center;
    order: 1;
    pointer-events: auto;
    overflow: visible;
    padding-top: 10px;
  }

  .unsure-image-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 78%;
    background: #F6F9FF;
    border-radius: 18px;
    z-index: 1;
  }

  .unsure-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 435px;
    height: auto;
    display: block;
  }

  .unsure-content {
    max-width: 340px;
    width: 100%;
    order: 2;
  }

  .unsure-content h2 {
    margin: 0 0 20px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    color: #000000;
  }

  .unsure-content p {
    margin: 0 0 25px;
    /* font-size: 14px; */
    line-height: 1.55;
    color: #333333;
  }

  .unsure-btn {
    width: 100%;
    max-width: 276px;
    min-height: 40px;
    margin: 0 auto;
    padding: 10px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    /* font-size: 11px; */
    line-height: 1.25;
    text-align: center;
  }

  .unsure-btn img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .site-footer {
    padding: 34px 0 22px;
  }

  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-column p {
    font-size: 11px;
    line-height: 1.65;
  }

  .footer-floating-actions {
    justify-content: flex-end;
    gap: 12px;
  }

  .footer-floating-btn {
    width: 40px;
    height: 40px;
  }

  .footer-floating-btn img {
    width: 16px;
    height: 16px;
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }

  .footer-copy {
    font-size: 10px;
  }

  .footer-socials img {
    /* width: 20px; */
    height: 20px;
  }



}

@media (max-width: 680px) {

  .hero-content h1 {
    max-width: 420px;
  }
  
  .trust-grid {
    grid-template-columns: 280px;
    gap: 20px;
  }

  .compare-table {
    grid-template-columns: 1fr 1fr;
  }

  .compare-head h3 {
    font-size: 15px;
  }

  .compare-row strong {
    font-size: 12px;
  }

  .compare-value {
    font-size: 16px;
  }

  .compare-col-label {
    display: none;
  }
  /* .compare-desktop {
    display: none;
  } */

  /* .compare-mobile {
    display: block;
    overflow: hidden;
    max-width: 360px;
    margin: 0 auto;
    padding: 0 20px;
  } */

  /* .compare-mobile-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0;
    padding: 0;
  }

  .compare-mobile-track::-webkit-scrollbar {
    display: none;
  } */

  /* .compare-mobile-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    background: #fff;
    border: 2px solid #DCDCDC;
    border-radius: 18px;
    overflow: hidden;
    scroll-snap-align: start;
  }

  .compare-mobile-card-featured {
    border-color: #1C2BB5;
  } */

  .compare-mobile-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    scroll-snap-align: start;
  }

  /* featured mobile header */
  .compare-mobile-card-featured .compare-head-blue {
    background: #1C2BB5;
    color: #fff;
    border: 2px solid #1C2BB5;
    border-bottom: none;
    border-radius: 17px 17px 0 0;
  }

  /* plain mobile header */
  .compare-mobile-card .compare-head-gray {
    background: #E6E6E6;
    color: #111111;
    border: 2px solid #DCDCDC;
    border-bottom: none;
    border-radius: 17px 17px 0 0;
  }

  /* normal mobile rows */
  .compare-mobile-card-featured .compare-mobile-row {
    border-left: 2px solid #1C2BB5;
    border-right: 2px solid #1C2BB5;
    border-bottom: 1px solid #D9D9D9;
    background: #fff;
  }

  .compare-mobile-card:not(.compare-mobile-card-featured) .compare-mobile-row {
    border-left: 2px solid #DCDCDC;
    border-right: 2px solid #DCDCDC;
    border-bottom: 1px solid #D9D9D9;
    background: #fff;
  }

  /* last row closes the card */
  .compare-mobile-card-featured .compare-mobile-row:last-child {
    border-bottom: 2px solid #1C2BB5;
    border-radius: 0 0 17px 17px;
  }

  .compare-mobile-card:not(.compare-mobile-card-featured) .compare-mobile-row:last-child {
    border-bottom: 2px solid #DCDCDC;
    border-radius: 0 0 17px 17px;
  }

  /* .compare-mobile-body {
    padding: 0 10px;
  } */

  .compare-mobile-row {
    padding: 12px 8px 11px;
    border-bottom: 1px solid #D9D9D9;
    text-align: center;
  }

  /* .compare-mobile-row:last-child {
    border-bottom: none;
  } */

  .compare-mobile-row span {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1.25;
    color: #666666;
    font-weight: 300;
  }

  .compare-mobile-row strong {
    display: block;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 400;
    color: #000000;
  }

  .compare-row-emphasis strong {
    font-size: 18px;
  }

  .compare-mobile-row.compare-row-emphasis strong {
    gap: 4px;
  }

  .compare-mobile-row .compare-prefix {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
  }

  .compare-mobile-row .compare-value {
    font-size: 20px;
    color: #000000;
    font-weight: 500;
  }

  /* .compare-line-1,
  .compare-line-3 {
    transform: translateX(-30px);
  }

  .compare-line-2,
  .compare-line-4 {
    transform: translateX(30px);
  } */

  .compare-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 12px 0 0;
  }

  .compare-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D7D7D7;
    border: 0;
    padding: 0;
    cursor: pointer;
  }

  .compare-dot.active {
    background: #9A9A9A;
  }

  .protocol-right {
    max-width: 390px;
  }
}


@media (max-width: 510px) {
  .protocol-features {
    grid-template-columns: 1fr;
  }
  .trusted-word-item {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .trusted-word-item {
    font-size: 18px;
  }

  .faq-list {
    max-width: 100%;
  }
}

@media (max-width: 357px) {
  .protocol-highlight::before {
    min-height: 60px;
  }

}


/* ------- simple title reveal ------- */
.title-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.title-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .title-reveal {
    transform: translateY(20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .title-reveal,
  .title-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}



/* ------- scroll reveal ------- */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-stagger > *.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* slightly stronger pop for cards/feature blocks */
.trust-grid > .trust-card.is-visible,
.protocol-features > .protocol-feature.is-visible,
.shield-cards > .shield-card.is-visible {
  transform: translateY(0) scale(1);
}

/* optional: softer initial movement on mobile */
@media (max-width: 767px) {
  .reveal-stagger > * {
    transform: translateY(24px) scale(0.985);
  }
}

/* accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}