html {
  scroll-behavior: smooth;
}
/* =========================================
   GALH 28 DAY
   PROBLEM + SOLUTION SECTION
========================================= */

.galh-28day-problem-solution {
  direction: rtl;
  width: 100%;
  overflow: hidden;
}


/* =========================================
   PROBLEM SECTION
========================================= */

.galh-problem-section {
  width: 100%;
  padding: 80px 20px 75px;
  box-sizing: border-box;

  background: #ffffff;
}

.galh-problem-inner {
  max-width: 780px;
  margin: 0 auto;

  text-align: center;
}


/* תג קטן */

.galh-section-label {
  display: inline-block;

  margin-bottom: 18px;
  padding: 8px 20px;

  border-radius: 50px;

  background: #e8f9fc;
  color: #0786a3;

  font-size: 15px;
  font-weight: 800;
}


/* כותרת */

.galh-problem-inner h2 {
  margin: 0 0 30px;

  color: #102a43;

  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;

  font-weight: 900;

  letter-spacing: -1px;
}


/* טקסט */

.galh-problem-text {
  max-width: 650px;
  margin: 0 auto;

  color: #536b7d;

  font-size: 20px;
  line-height: 1.75;
}

.galh-problem-text p {
  margin: 0 0 8px;
}


/* משפט מודגש */

.galh-problem-highlight {
  max-width: 650px;

  margin: 35px auto 0;
  padding: 20px 25px;

  background: #f3fafc;

  border-right: 5px solid #08a9c7;

  border-radius: 12px;

  color: #102a43;

  font-size: 22px;
  font-weight: 800;

  box-sizing: border-box;
}


/* =========================================
   SOLUTION SECTION
========================================= */

.galh-solution-section {
  position: relative;

  width: 100%;
  padding: 85px 20px 90px;

  box-sizing: border-box;

  background:
    linear-gradient(
      135deg,
      #e9faff 0%,
      #f7fdfe 50%,
      #e2f7fb 100%
    );
}


/* אלמנט עיצובי עדין */

.galh-solution-section::before {
  content: "";

  position: absolute;

  width: 400px;
  height: 400px;

  top: -200px;
  left: -150px;

  background: rgba(8, 169, 199, 0.08);

  border-radius: 50%;

  pointer-events: none;
}


.galh-solution-inner {
  position: relative;
  z-index: 1;

  max-width: 1100px;
  margin: 0 auto;

  text-align: center;
}


/* תג */

.galh-solution-label {
  background: #ffffff;

  box-shadow:
    0 5px 15px rgba(8, 120, 150, 0.08);
}


/* כותרת */

.galh-solution-inner h2 {
  margin: 0 0 20px;

  color: #102a43;

  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.15;

  font-weight: 900;

  letter-spacing: -1px;
}


/* טקסט פתיחה */

.galh-solution-intro {
  max-width: 650px;

  margin: 0 auto 50px;

  color: #536b7d;

  font-size: 20px;
  line-height: 1.65;
}


/* =========================================
   BIG NUMBERS
========================================= */

.galh-big-numbers {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;

  max-width: 950px;

  margin: 0 auto;
}


/* כרטיס */

.galh-number-card {
  padding: 35px 25px;

  background: #ffffff;

  border-radius: 22px;

  box-shadow:
    0 15px 40px rgba(20, 100, 120, 0.10);

  border: 1px solid rgba(8, 169, 199, 0.10);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.galh-number-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 45px rgba(20, 100, 120, 0.16);
}


/* המספר */

.galh-number {
  margin-bottom: 8px;

  color: #08a9c7;

  font-size: clamp(52px, 6vw, 76px);

  line-height: 1;

  font-weight: 900;

  letter-spacing: -3px;
}


/* כותרת */

.galh-number-title {
  margin-bottom: 8px;

  color: #102a43;

  font-size: 21px;

  font-weight: 800;
}


/* טקסט */

.galh-number-text {
  color: #718096;

  font-size: 15px;

  line-height: 1.5;
}


/* =========================================
   BOTTOM MESSAGE
========================================= */

.galh-solution-bottom {
  max-width: 650px;

  margin: 55px auto 0;

  text-align: center;
}


.galh-solution-check {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  margin: 0 auto 15px;

  background: #08a9c7;

  color: #ffffff;

  border-radius: 50%;

  font-size: 28px;
  font-weight: 900;

  box-shadow:
    0 8px 20px rgba(8, 169, 199, 0.25);
}


.galh-solution-bottom p {
  margin: 0 0 15px;

  color: #536b7d;

  font-size: 19px;

  line-height: 1.7;
}


.galh-solution-bottom strong {
  display: block;

  color: #102a43;

  font-size: 28px;

  font-weight: 900;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .galh-problem-section {
    padding: 60px 18px;
  }

  .galh-problem-inner h2 {
    font-size: 34px;
  }

  .galh-problem-text {
    font-size: 18px;
  }

  .galh-problem-highlight {
    font-size: 19px;
  }


  .galh-solution-section {
    padding: 65px 18px;
  }

  .galh-solution-inner h2 {
    font-size: 36px;
  }

  .galh-solution-intro {
    font-size: 18px;
  }


  .galh-big-numbers {
    grid-template-columns: 1fr;

    max-width: 400px;

    gap: 15px;
  }


  .galh-number-card {
    padding: 25px 20px;
  }


  .galh-number {
    font-size: 58px;
  }


  .galh-solution-bottom {
    margin-top: 40px;
  }

}


@media (max-width: 420px) {

  .galh-problem-inner h2 {
    font-size: 30px;
  }

  .galh-solution-inner h2 {
    font-size: 31px;
  }

  .galh-section-label {
    font-size: 14px;
  }

}
/* ========================================
   GALH - מה אתם מקבלים בקורס
======================================== */

.galh-course-benefits {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(
        180deg,
        #f4fcfc 0%,
        #ffffff 100%
    );
    box-sizing: border-box;
}

.galh-benefits-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* כותרת */

.galh-benefits-header {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.galh-benefits-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 18px;
    border-radius: 30px;
    background: #dff7f7;
    color: #159a9c;
    font-size: 16px;
    font-weight: 700;
}

.galh-benefits-header h2 {
    margin: 0 0 18px;
    color: #1d2f35;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.galh-benefits-header p {
    margin: 0;
    color: #5e7075;
    font-size: 19px;
    line-height: 1.7;
}

/* גריד הכרטיסיות */

.galh-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* כרטיס */

.galh-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e3eeee;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(20, 100, 100, 0.06);
    box-sizing: border-box;
    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}

.galh-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(20, 100, 100, 0.11);
}

/* אייקון */

.galh-benefit-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f8f8;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

/* תוכן */

.galh-benefit-content h3 {
    margin: 2px 0 8px;
    color: #1d2f35;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 800;
}

.galh-benefit-content p {
    margin: 0;
    color: #65777c;
    font-size: 16px;
    line-height: 1.65;
}

/* ========================================
   מובייל
======================================== */

@media (max-width: 767px) {

    .galh-course-benefits {
        padding: 55px 16px;
    }

    .galh-benefits-header {
        margin-bottom: 32px;
    }

    .galh-benefits-label {
        font-size: 14px;
    }

    .galh-benefits-header h2 {
        font-size: 31px;
    }

    .galh-benefits-header p {
        font-size: 17px;
        line-height: 1.6;
    }

    .galh-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .galh-benefit-card {
        gap: 16px;
        padding: 22px;
        border-radius: 15px;
    }

    .galh-benefit-icon {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        font-size: 23px;
    }

    .galh-benefit-content h3 {
        font-size: 18px;
    }

    .galh-benefit-content p {
        font-size: 15px;
    }
}
/* =========================================
   GALH 28 DAY
   PROGRAM / 4 WEEKS SECTION
========================================= */

.galh-28day-program {
  direction: rtl;

  width: 100%;

  padding: 90px 20px;

  box-sizing: border-box;

  background: #ffffff;
}

.galh-28day-program-inner {
  max-width: 1150px;

  margin: 0 auto;

  text-align: center;
}


/* =========================================
   HEADER
========================================= */

.galh-program-label {
  display: inline-block;

  margin-bottom: 18px;

  padding: 8px 20px;

  background: #e8f9fc;

  color: #0786a3;

  border-radius: 50px;

  font-size: 15px;

  font-weight: 800;
}


.galh-28day-program h2 {
  margin: 0 0 20px;

  color: #102a43;

  font-size: clamp(34px, 4.5vw, 56px);

  line-height: 1.2;

  font-weight: 900;

  letter-spacing: -1px;
}


.galh-program-intro {
  max-width: 680px;

  margin: 0 auto 55px;

  color: #607589;

  font-size: 20px;

  line-height: 1.7;
}


/* =========================================
   WEEK CARDS
========================================= */

.galh-program-weeks {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;

  max-width: 1100px;

  margin: 0 auto;
}


.galh-week-card {
  position: relative;

  padding: 35px 25px 30px;

  background: #ffffff;

  border: 1px solid #e3f0f3;

  border-radius: 22px;

  box-shadow:
    0 10px 30px rgba(20, 90, 110, 0.07);

  text-align: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.galh-week-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 18px 40px rgba(20, 90, 110, 0.14);
}


/* =========================================
   WEEK NUMBER
========================================= */

.galh-week-number {
  position: absolute;

  top: 15px;

  left: 18px;

  color: #d9f1f5;

  font-size: 38px;

  line-height: 1;

  font-weight: 900;
}


/* =========================================
   ICON
========================================= */

.galh-week-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 65px;

  height: 65px;

  margin: 0 auto 18px;

  background: #e8f9fc;

  border-radius: 50%;

  font-size: 30px;
}


/* =========================================
   TITLES
========================================= */

.galh-week-card h3 {
  margin: 0 0 5px;

  color: #08a9c7;

  font-size: 17px;

  font-weight: 800;
}


.galh-week-card h4 {
  margin: 0 0 15px;

  color: #102a43;

  font-size: 22px;

  font-weight: 900;
}


/* =========================================
   TEXT
========================================= */

.galh-week-card p {
  min-height: 105px;

  margin: 0 0 20px;

  color: #607589;

  font-size: 15px;

  line-height: 1.65;
}


/* =========================================
   TAG
========================================= */

.galh-week-tag {
  display: inline-block;

  padding: 7px 13px;

  background: #f3fafc;

  color: #0786a3;

  border-radius: 30px;

  font-size: 13px;

  font-weight: 700;
}


/* =========================================
   SUMMARY
========================================= */

.galh-program-summary {
  display: flex;

  align-items: center;

  gap: 20px;

  max-width: 750px;

  margin: 50px auto 0;

  padding: 22px 30px;

  background:
    linear-gradient(
      135deg,
      #e9faff,
      #f6fdfe
    );

  border-radius: 18px;

  text-align: right;

  box-sizing: border-box;
}


.galh-summary-icon {
  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 48px;

  height: 48px;

  background: #08a9c7;

  color: #ffffff;

  border-radius: 50%;

  font-size: 25px;

  font-weight: 900;
}


.galh-program-summary strong {
  display: block;

  margin-bottom: 5px;

  color: #102a43;

  font-size: 19px;

  font-weight: 900;
}


.galh-program-summary p {
  margin: 0;

  color: #607589;

  font-size: 15px;

  line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .galh-program-weeks {
    grid-template-columns:
      repeat(2, 1fr);

    max-width: 700px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .galh-28day-program {
    padding: 65px 18px;
  }


  .galh-28day-program h2 {
    font-size: 34px;
  }


  .galh-program-intro {
    font-size: 18px;

    margin-bottom: 40px;
  }


  .galh-program-weeks {
    grid-template-columns: 1fr;

    max-width: 400px;

    gap: 15px;
  }


  .galh-week-card {
    padding: 30px 22px;
  }


  .galh-week-card p {
    min-height: auto;
  }


  .galh-program-summary {
    align-items: flex-start;

    padding: 20px;

    gap: 15px;
  }


  .galh-summary-icon {
    width: 42px;
    height: 42px;

    font-size: 21px;
  }


  .galh-program-summary strong {
    font-size: 17px;
  }


  .galh-program-summary p {
    font-size: 14px;
  }

}
/* =========================================
   GALH 28 DAY
   WHO IS THIS PROGRAM FOR?
========================================= */

.galh-28day-suitable {
  direction: rtl;

  width: 100%;

  padding: 90px 20px;

  box-sizing: border-box;

  background:
    linear-gradient(
      180deg,
      #f7fcfd 0%,
      #ffffff 100%
    );
}


.galh-suitable-inner {
  max-width: 1100px;

  margin: 0 auto;

  text-align: center;
}


/* =========================================
   HEADER
========================================= */

.galh-suitable-label {
  display: inline-block;

  margin-bottom: 18px;

  padding: 8px 20px;

  background: #e8f9fc;

  color: #0786a3;

  border-radius: 50px;

  font-size: 15px;

  font-weight: 800;
}


.galh-suitable-inner > h2 {
  margin: 0 0 20px;

  color: #102a43;

  font-size: clamp(34px, 4.5vw, 56px);

  line-height: 1.2;

  font-weight: 900;

  letter-spacing: -1px;
}


.galh-suitable-intro {
  max-width: 700px;

  margin: 0 auto 55px;

  color: #607589;

  font-size: 20px;

  line-height: 1.7;
}


/* =========================================
   CARDS GRID
========================================= */

.galh-suitable-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 25px;

  max-width: 1000px;

  margin: 0 auto;
}


/* =========================================
   CARD
========================================= */

.galh-suitable-card {
  padding: 35px 35px 30px;

  background: #ffffff;

  border-radius: 22px;

  text-align: right;

  box-sizing: border-box;

  box-shadow:
    0 12px 35px rgba(20, 90, 110, 0.08);
}


/* =========================================
   CARD HEADER
========================================= */

.galh-suitable-card-header {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 25px;
}


.galh-suitable-card-icon {
  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 48px;

  height: 48px;

  border-radius: 50%;

  font-size: 27px;

  font-weight: 900;
}


.galh-suitable-card h3 {
  margin: 0;

  color: #102a43;

  font-size: 23px;

  line-height: 1.3;

  font-weight: 900;
}


/* =========================================
   YES CARD
========================================= */

.galh-suitable-yes {
  border-top: 5px solid #08a9c7;
}


.galh-suitable-yes
.galh-suitable-card-icon {
  background: #e5f8fb;

  color: #08a9c7;
}


/* =========================================
   NO CARD
========================================= */

.galh-suitable-no {
  border-top: 5px solid #d9e2e7;
}


.galh-suitable-no
.galh-suitable-card-icon {
  background: #f2f5f6;

  color: #8a9aa5;
}


/* =========================================
   LIST
========================================= */

.galh-suitable-card ul {
  margin: 0;

  padding: 0;

  list-style: none;
}


.galh-suitable-card li {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-bottom: 16px;

  color: #536b7d;

  font-size: 16px;

  line-height: 1.6;
}


.galh-suitable-card li:last-child {
  margin-bottom: 0;
}


.galh-suitable-card li span {
  flex-shrink: 0;

  font-size: 18px;

  font-weight: 900;
}


.galh-suitable-yes li span {
  color: #08a9c7;
}


.galh-suitable-no li span {
  color: #9aa9b2;
}


/* =========================================
   CONCLUSION
========================================= */

.galh-suitable-conclusion {
  max-width: 750px;

  margin: 60px auto 0;

  text-align: center;
}


.galh-conclusion-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 55px;

  height: 55px;

  margin: 0 auto 18px;

  background: #e8f9fc;

  border-radius: 50%;

  font-size: 25px;
}


.galh-suitable-conclusion h3 {
  margin: 0 auto 12px;

  color: #102a43;

  font-size: 25px;

  line-height: 1.5;

  font-weight: 900;
}


.galh-suitable-conclusion p {
  margin: 0 0 25px;

  color: #607589;

  font-size: 18px;
}


/* =========================================
   PURCHASE BUTTON
========================================= */

.galh-28day-purchase-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 17px 42px;

  background:
    linear-gradient(
      135deg,
      #08a9c7,
      #087f9d
    );

  color: #ffffff !important;

  font-size: 20px;

  font-weight: 800;

  text-decoration: none !important;

  border-radius: 50px;

  box-shadow:
    0 12px 25px rgba(8, 169, 199, 0.28);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.galh-28day-purchase-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 17px 32px rgba(8, 169, 199, 0.38);
}


.galh-28day-purchase-button span {
  font-size: 24px;

  transition:
    transform 0.25s ease;
}


.galh-28day-purchase-button:hover span {
  transform: translateX(-5px);
}


/* =========================================
   PURCHASE NOTE
========================================= */

.galh-purchase-note {
  margin-top: 15px;

  color: #718096;

  font-size: 13px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .galh-28day-suitable {
    padding: 65px 18px;
  }


  .galh-suitable-inner > h2 {
    font-size: 34px;
  }


  .galh-suitable-intro {
    font-size: 18px;

    margin-bottom: 40px;
  }


  .galh-suitable-grid {
    grid-template-columns: 1fr;

    max-width: 500px;
  }


  .galh-suitable-card {
    padding: 28px 23px;
  }


  .galh-suitable-card h3 {
    font-size: 21px;
  }


  .galh-suitable-card li {
    font-size: 15px;
  }


  .galh-suitable-conclusion {
    margin-top: 45px;
  }


  .galh-suitable-conclusion h3 {
    font-size: 21px;
  }


  .galh-28day-purchase-button {
    width: 100%;

    box-sizing: border-box;

    font-size: 18px;
  }

}
/* =========================================
   GALH 28 DAY
   SOCIAL PROOF SECTION
========================================= */

.galh-28day-social-proof {
  direction: rtl;

  width: 100%;

  padding: 95px 20px;

  box-sizing: border-box;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f4fbfc 100%
    );
}


.galh-social-proof-inner {
  max-width: 1100px;

  margin: 0 auto;

  text-align: center;
}


/* =========================================
   HEADER
========================================= */

.galh-social-proof-label {
  display: inline-block;

  margin-bottom: 18px;

  padding: 8px 20px;

  background: #e8f9fc;

  color: #0786a3;

  border-radius: 50px;

  font-size: 15px;

  font-weight: 800;
}


.galh-social-proof-inner h2 {
  max-width: 850px;

  margin: 0 auto 20px;

  color: #102a43;

  font-size: clamp(34px, 4.5vw, 56px);

  line-height: 1.2;

  font-weight: 900;

  letter-spacing: -1px;
}


.galh-social-proof-intro {
  max-width: 720px;

  margin: 0 auto 55px;

  color: #607589;

  font-size: 20px;

  line-height: 1.75;
}


/* =========================================
   COLLAGE
========================================= */

.galh-social-proof-collage {
  max-width: 900px;

  margin: 0 auto;

  padding: 25px;

  background: #ffffff;

  border-radius: 24px;

  box-shadow:
    0 15px 45px rgba(20, 90, 110, 0.10);

  box-sizing: border-box;
}


.galh-collage-title {
  margin-bottom: 20px;

  color: #102a43;

  font-size: 20px;

  font-weight: 800;
}


.galh-collage-placeholder {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  min-height: 350px;

  background: #f7fbfc;

  border: 2px dashed #cfe7ec;

  border-radius: 16px;
}


.galh-collage-placeholder-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 60px;

  height: 60px;

  margin-bottom: 15px;

  background: #e8f9fc;

  border-radius: 50%;

  font-size: 28px;
}


.galh-collage-placeholder p {
  margin: 0;

  color: #8a9aa5;

  font-size: 14px;
}


/* =========================================
   SELECTED TESTIMONIALS
========================================= */

.galh-selected-title {
  max-width: 700px;

  margin: 70px auto 35px;
}


.galh-selected-title h3 {
  margin: 0 0 12px;

  color: #102a43;

  font-size: 30px;

  font-weight: 900;
}


.galh-selected-title p {
  margin: 0;

  color: #607589;

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================
   SELECTED PLACEHOLDERS
========================================= */

.galh-selected-placeholder {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 25px;

  max-width: 900px;

  margin: 0 auto;
}


.galh-selected-item {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  min-height: 220px;

  padding: 25px;

  background: #ffffff;

  border: 2px dashed #cfe7ec;

  border-radius: 18px;

  box-sizing: border-box;
}


.galh-selected-item span {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 55px;

  height: 55px;

  margin-bottom: 12px;

  background: #e8f9fc;

  border-radius: 50%;

  font-size: 25px;
}


.galh-selected-item p {
  margin: 0;

  color: #8a9aa5;

  font-size: 14px;
}


/* =========================================
   CONCLUSION
========================================= */

.galh-social-proof-conclusion {
  max-width: 750px;

  margin: 70px auto 0;
}


.galh-social-proof-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 55px;

  height: 55px;

  margin: 0 auto 18px;

  background: #e8f9fc;

  border-radius: 50%;

  font-size: 25px;
}


.galh-social-proof-conclusion h3 {
  margin: 0 0 12px;

  color: #102a43;

  font-size: 28px;

  font-weight: 900;
}


.galh-social-proof-conclusion p {
  margin: 0;

  color: #607589;

  font-size: 18px;

  line-height: 1.75;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .galh-28day-social-proof {
    padding: 65px 18px;
  }


  .galh-social-proof-inner h2 {
    font-size: 34px;
  }


  .galh-social-proof-intro {
    font-size: 18px;

    margin-bottom: 40px;
  }


  .galh-social-proof-collage {
    padding: 15px;

    border-radius: 18px;
  }


  .galh-collage-title {
    font-size: 18px;
  }


  .galh-selected-title {
    margin-top: 50px;
  }


  .galh-selected-title h3 {
    font-size: 25px;
  }


  .galh-selected-placeholder {
    grid-template-columns: 1fr;

    gap: 18px;
  }


  .galh-social-proof-conclusion {
    margin-top: 50px;
  }


  .galh-social-proof-conclusion h3 {
    font-size: 24px;
  }


  .galh-social-proof-conclusion p {
    font-size: 17px;
  }

}
/* =========================================
   GALH 28 DAY
   ABOUT GAL SECTION
========================================= */

.galh-28day-about {
  direction: rtl;

  width: 100%;

  padding: 100px 20px;

  box-sizing: border-box;

  background: #ffffff;
}


.galh-about-inner {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  align-items: center;

  gap: 80px;

  max-width: 1100px;

  margin: 0 auto;
}


/* =========================================
   IMAGE
========================================= */

.galh-about-image {
  position: relative;

  display: flex;

  justify-content: center;

  align-items: flex-end;

  min-height: 550px;

  background:
    linear-gradient(
      145deg,
      #e8f9fc 0%,
      #cceff5 100%
    );

  border-radius: 30px;

  overflow: hidden;
}


.galh-about-image::before {
  content: "";

  position: absolute;

  width: 300px;

  height: 300px;

  top: 40px;

  left: 50%;

  transform: translateX(-50%);

  background: rgba(255,255,255,0.45);

  border-radius: 50%;
}


.galh-about-image img {
  position: relative;

  z-index: 2;

  display: block;

  width: 100%;

  max-width: 520px;

  height: auto;

  object-fit: contain;

  object-position: bottom center;
}


/* =========================================
   TEXT
========================================= */

.galh-about-content {
  text-align: right;
}


.galh-about-label {
  display: inline-block;

  margin-bottom: 18px;

  padding: 8px 20px;

  background: #e8f9fc;

  color: #0786a3;

  border-radius: 50px;

  font-size: 15px;

  font-weight: 800;
}


.galh-about-content h2 {
  margin: 0 0 28px;

  color: #102a43;

  font-size: clamp(32px, 4vw, 48px);

  line-height: 1.25;

  font-weight: 900;

  letter-spacing: -0.8px;
}


.galh-about-content p {
  margin: 0 0 18px;

  color: #526b7d;

  font-size: 18px;

  line-height: 1.8;
}


/* =========================================
   HIGHLIGHT
========================================= */

.galh-about-highlight {
  margin-top: 28px !important;

  padding: 22px 25px;

  background: #f1fafc;

  border-right: 5px solid #08a9c7;

  border-radius: 12px;

  color: #24485a !important;

  font-size: 19px !important;

  font-weight: 600;
}


/* =========================================
   SIGNATURE
========================================= */

.galh-about-signature {
  display: flex;

  flex-direction: column;

  gap: 4px;

  margin-top: 30px;

  padding-top: 22px;

  border-top: 1px solid #e3edf0;
}


.galh-about-signature strong {
  color: #102a43;

  font-size: 21px;

  font-weight: 900;
}


.galh-about-signature span {
  color: #718596;

  font-size: 15px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .galh-about-inner {
    grid-template-columns: 1fr;

    gap: 50px;

    max-width: 700px;
  }


  .galh-about-image {
    order: 1;

    min-height: 450px;

    max-width: 550px;

    width: 100%;

    margin: 0 auto;
  }


  .galh-about-content {
    order: 2;

    text-align: right;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .galh-28day-about {
    padding: 65px 18px;
  }


  .galh-about-inner {
    gap: 35px;
  }


  .galh-about-image {
    min-height: 390px;

    border-radius: 22px;
  }


  .galh-about-content h2 {
    font-size: 32px;

    line-height: 1.3;
  }


  .galh-about-content p {
    font-size: 17px;

    line-height: 1.75;
  }


  .galh-about-highlight {
    padding: 18px 20px;

    font-size: 17px !important;
  }

}
/* =========================================
   GALH 28 DAY
   PURCHASE SECTION
========================================= */

.galh-28day-purchase {
  direction: rtl;

  width: 100%;

  padding: 110px 20px;

  box-sizing: border-box;

  background:
    linear-gradient(
      145deg,
      #e9fafd 0%,
      #f7fcfd 50%,
      #e8f8fb 100%
    );
}


.galh-purchase-inner {
  max-width: 900px;

  margin: 0 auto;

  text-align: center;
}


/* =========================================
   HEADER
========================================= */

.galh-purchase-label {
  display: inline-block;

  margin-bottom: 18px;

  padding: 8px 22px;

  background: #ffffff;

  color: #0786a3;

  border-radius: 50px;

  font-size: 15px;

  font-weight: 800;

  box-shadow:
    0 5px 15px rgba(8, 120, 145, 0.08);
}


.galh-purchase-inner h2 {
  max-width: 750px;

  margin: 0 auto 20px;

  color: #102a43;

  font-size: clamp(38px, 5vw, 60px);

  line-height: 1.2;

  font-weight: 900;

  letter-spacing: -1px;
}


.galh-purchase-intro {
  max-width: 650px;

  margin: 0 auto 45px;

  color: #526b7d;

  font-size: 20px;

  line-height: 1.75;
}


/* =========================================
   PRICE CARD
========================================= */

.galh-price-card {
  max-width: 520px;

  margin: 0 auto;

  padding: 45px 40px 35px;

  background: #ffffff;

  border-radius: 28px;

  box-shadow:
    0 20px 60px rgba(20, 90, 110, 0.15);

  box-sizing: border-box;
}


/* =========================================
   PRICE
========================================= */

.galh-price-top {
  display: inline-block;

  margin-bottom: 18px;

  padding: 7px 18px;

  background: #fff3d6;

  color: #a66a00;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 800;
}


.galh-old-price {
  margin-bottom: 3px;

  color: #81919c;

  font-size: 18px;
}


.galh-old-price span {
  text-decoration: line-through;

  text-decoration-thickness: 2px;
}


.galh-current-price {
  margin: 0;

  color: #0786a3;

  font-size: 64px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -2px;
}


.galh-price-note {
  margin-top: 10px;

  color: #718596;

  font-size: 15px;
}


/* =========================================
   BENEFITS
========================================= */

.galh-purchase-benefits {
  display: flex;

  flex-direction: column;

  gap: 13px;

  margin: 32px auto;

  padding-top: 28px;

  border-top: 1px solid #e7eff2;

  text-align: right;
}


.galh-purchase-benefit {
  display: flex;

  align-items: center;

  gap: 10px;

  color: #405b6c;

  font-size: 17px;

  font-weight: 600;
}


.galh-purchase-benefit span {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 25px;

  height: 25px;

  background: #e5f8f4;

  color: #15916f;

  border-radius: 50%;

  font-size: 15px;

  font-weight: 900;
}


/* =========================================
   PURCHASE BUTTON
========================================= */

.galh-purchase-button {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  width: 100%;

  padding: 20px 25px;

  box-sizing: border-box;

  background:
    linear-gradient(
      135deg,
      #08abc9,
      #087f9d
    );

  color: #ffffff !important;

  font-size: 21px;

  font-weight: 900;

  text-decoration: none !important;

  border-radius: 50px;

  box-shadow:
    0 12px 25px rgba(8, 169, 199, 0.28);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.galh-purchase-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 18px 35px rgba(8, 169, 199, 0.38);
}


.galh-purchase-button span {
  font-size: 25px;

  transition:
    transform 0.25s ease;
}


.galh-purchase-button:hover span {
  transform: translateX(-6px);
}


/* =========================================
   SECURITY
========================================= */

.galh-purchase-secure {
  margin-top: 18px;

  color: #8a9aa5;

  font-size: 13px;
}


/* =========================================
   BOTTOM MESSAGE
========================================= */

.galh-purchase-bottom {
  max-width: 650px;

  margin: 45px auto 0;

  color: #526b7d;

  font-size: 17px;

  line-height: 1.7;
}


.galh-purchase-bottom p {
  margin: 0 0 8px;
}


.galh-purchase-bottom strong {
  color: #102a43;

  font-size: 20px;

  font-weight: 900;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .galh-28day-purchase {
    padding: 70px 18px;
  }


  .galh-purchase-inner h2 {
    font-size: 36px;
  }


  .galh-purchase-intro {
    font-size: 18px;

    margin-bottom: 35px;
  }


  .galh-price-card {
    padding: 35px 25px 30px;

    border-radius: 22px;
  }


  .galh-current-price {
    font-size: 56px;
  }


  .galh-purchase-benefit {
    font-size: 16px;
  }


  .galh-purchase-button {
    font-size: 19px;

    padding: 18px 20px;
  }

}
/* =========================================
   GALH 28 DAY
   PAYMENT OPTIONS
========================================= */

.galh-28day-payment-options {
  direction: rtl;

  width: 100%;

  padding: 65px 20px 80px;

  box-sizing: border-box;

  background: #ffffff;
}


.galh-payment-inner {
  max-width: 1050px;

  margin: 0 auto;

  text-align: center;
}


/* =========================================
   HEADER
========================================= */

.galh-payment-label {
  display: inline-block;

  margin-bottom: 15px;

  padding: 7px 18px;

  background: #f1fafc;

  color: #0786a3;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 800;
}


.galh-payment-inner h2 {
  margin: 0 0 12px;

  color: #102a43;

  font-size: clamp(28px, 4vw, 40px);

  line-height: 1.3;

  font-weight: 900;
}


.galh-payment-intro {
  max-width: 650px;

  margin: 0 auto 40px;

  color: #607589;

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================
   PAYMENT GRID
========================================= */

.galh-payment-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;

  max-width: 1000px;

  margin: 0 auto;
}


/* =========================================
   PAYMENT CARD
========================================= */

.galh-payment-card {
  padding: 30px 22px;

  background: #f8fcfd;

  border: 1px solid #e1eef1;

  border-radius: 18px;

  box-sizing: border-box;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.galh-payment-card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 10px 25px rgba(20, 90, 110, 0.08);
}


.galh-payment-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 50px;

  height: 50px;

  margin: 0 auto 15px;

  background: #e8f9fc;

  border-radius: 50%;

  font-size: 23px;
}


.galh-payment-card h3 {
  margin: 0 0 10px;

  color: #102a43;

  font-size: 21px;

  font-weight: 900;
}


.galh-payment-card p {
  margin: 0 0 8px;

  color: #718596;

  font-size: 15px;
}


.galh-payment-detail {
  display: block;

  direction: ltr;

  color: #0786a3;

  font-size: 20px;

  font-weight: 900;
}


.galh-payment-email {
  font-size: 17px;

  word-break: break-word;
}


/* =========================================
   BANK DETAILS
========================================= */

.galh-bank-details {
  color: #526b7d;

  font-size: 14px;

  line-height: 1.8;
}


.galh-bank-details strong {
  color: #102a43;

  font-size: 16px;
}


/* =========================================
   AFTER PAYMENT
========================================= */

.galh-payment-after {
  display: flex;

  align-items: center;

  gap: 18px;

  max-width: 700px;

  margin: 35px auto 0;

  padding: 22px 28px;

  background: #f1fafc;

  border-right: 5px solid #08a9c7;

  border-radius: 14px;

  box-sizing: border-box;

  text-align: right;
}


.galh-payment-after-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 50px;

  height: 50px;

  background: #ffffff;

  border-radius: 50%;

  font-size: 22px;
}


.galh-payment-after h3 {
  margin: 0 0 5px;

  color: #102a43;

  font-size: 19px;

  font-weight: 900;
}


.galh-payment-after p {
  margin: 0;

  color: #526b7d;

  font-size: 15px;

  line-height: 1.7;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

  .galh-payment-grid {
    grid-template-columns: 1fr;

    max-width: 500px;
  }

}


@media (max-width: 600px) {

  .galh-28day-payment-options {
    padding: 50px 18px 65px;
  }


  .galh-payment-inner h2 {
    font-size: 29px;
  }


  .galh-payment-intro {
    font-size: 16px;
  }


  .galh-payment-card {
    padding: 25px 20px;
  }


  .galh-payment-after {
    align-items: flex-start;

    padding: 20px;

    gap: 13px;
  }


  .galh-payment-after-icon {
    width: 42px;

    height: 42px;

    font-size: 18px;
  }

}
/* =========================================
   GALH 28 DAY
   FAQ SECTION
========================================= */

.galh-28day-faq {
  direction: rtl;

  width: 100%;

  padding: 95px 20px;

  box-sizing: border-box;

  background: #f7fbfc;
}


.galh-faq-inner {
  max-width: 850px;

  margin: 0 auto;

  text-align: center;
}


/* =========================================
   HEADER
========================================= */

.galh-faq-label {
  display: inline-block;

  margin-bottom: 15px;

  padding: 7px 18px;

  background: #e8f9fc;

  color: #0786a3;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 800;
}


.galh-faq-inner h2 {
  margin: 0 0 15px;

  color: #102a43;

  font-size: clamp(36px, 5vw, 52px);

  line-height: 1.2;

  font-weight: 900;
}


.galh-faq-intro {
  max-width: 600px;

  margin: 0 auto 45px;

  color: #607589;

  font-size: 18px;

  line-height: 1.7;
}


/* =========================================
   FAQ LIST
========================================= */

.galh-faq-list {
  display: flex;

  flex-direction: column;

  gap: 12px;

  text-align: right;
}


/* =========================================
   FAQ ITEM
========================================= */

.galh-faq-item {
  background: #ffffff;

  border: 1px solid #e2edf0;

  border-radius: 14px;

  overflow: hidden;

  box-shadow:
    0 5px 18px rgba(20, 90, 110, 0.04);

  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}


.galh-faq-item[open] {
  border-color: #b9e5ec;

  box-shadow:
    0 8px 25px rgba(20, 90, 110, 0.08);
}


/* =========================================
   QUESTION
========================================= */

.galh-faq-item summary {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 23px 25px;

  cursor: pointer;

  list-style: none;

  color: #102a43;

  font-size: 18px;

  font-weight: 800;

  line-height: 1.5;
}


.galh-faq-item summary::-webkit-details-marker {
  display: none;
}


.galh-faq-item summary b {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 30px;

  height: 30px;

  background: #e8f9fc;

  color: #0786a3;

  border-radius: 50%;

  font-size: 22px;

  font-weight: 500;

  line-height: 1;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}


.galh-faq-item[open] summary b {
  transform: rotate(45deg);

  background: #0786a3;

  color: #ffffff;
}


/* =========================================
   ANSWER
========================================= */

.galh-faq-answer {
  padding: 0 25px 25px;

  color: #607589;

  font-size: 16px;

  line-height: 1.8;
}


.galh-faq-answer p {
  margin: 0 0 12px;
}


.galh-faq-answer p:last-child {
  margin-bottom: 0;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .galh-28day-faq {
    padding: 65px 18px;
  }


  .galh-faq-intro {
    font-size: 16px;

    margin-bottom: 30px;
  }


  .galh-faq-item summary {
    padding: 20px;

    font-size: 16px;
  }


  .galh-faq-item summary b {
    width: 27px;

    height: 27px;

    font-size: 20px;
  }


  .galh-faq-answer {
    padding: 0 20px 22px;

    font-size: 15px;
  }

}