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

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #ffffff;
  background-color: #000000;
}

.page {
  position: relative;
  min-height: 100vh;
  background-color: #050505;
  overflow: hidden;
}

/* Transparent gradient image overlay (placeholder path) */
/* .page-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 550px;
  background-image: url("background_gradient.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.95;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
} */

.page-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 550px; /* You can keep this or increase it slightly */
  background-image: url("background_gradient.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.95;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;

  /* ADD THIS */
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
.page-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  padding: 24px 32px 0;
}

.navbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.logo-line-1 {
  color: #ffd861;
}

.logo-line-2 {
  color: #9cf29b;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 38px;
  font-size: 14px;
  margin-left: auto;
}

.nav-link {
  text-decoration: none;
  color: #f4f4f4;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.btn-gradient-outline {
  position: relative;
  display: inline-block;
  border-radius: 999px;
  padding: 1px;
  background: linear-gradient(120deg,
      #e48531 0%,
      #e4d254 50%,
      #53bac3 100%);
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.btn-gradient-outline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  padding: 19px 49px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.9);
}

.btn-gradient-outline:hover span {
  background: rgba(0, 0, 0, 0.95);
}

.btn-signin {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 12px 37px;
  border-radius: 999px;
  border: none;
  color: #ffffff;
  text-decoration: none;
  background-color: transparent;
  box-sizing: border-box;
}

.btn-signin span {
  background: transparent;
  padding: 0;
}

.btn-signin:hover span {
  background: transparent;
}

.btn-signin::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg,
      #e48531 0%,
      #e4d254 50%,
      #53bac3 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  box-sizing: border-box;
}

.btn-primary span {
  background: rgba(0, 0, 0, 0.9);
}

.btn-primary:hover span {
  background: rgba(0, 0, 0, 0.95);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 115px 16px 96px;
}

.hero-inner {
  max-width: 720px;
  padding: 0 16px;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-title-main {
  font-weight: 300;
}

.hero-title-highlight {
  position: relative;
  display: inline-block;
  padding-bottom: 32px;
}

.hero-title-script {
  font-family: "Send Flowers", cursive;
  font-size: 1.4em;
  background: linear-gradient(120deg,
      #e48531 0%,
      #e4d254 50%,
      #53bac3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-scribble {
  width: 167px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 70%;
  margin-top: 8px;
  display: block;
}

.hero-subtitle {
  max-width: 630px;
  margin: 0 auto 40px;
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
  opacity: 0.95;
}

.btn-primary {
  font-size: 15px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.btn-icon img {
  width: 14px;
  height: 14px;
  display: block;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 150px;
  margin-top: 124px;
  padding: 0 16px;
  max-width: 960px;
}

.metric-heading {
  font-size: 27px;
  font-weight: 350;
  margin-bottom: 5px;
}

.metric-sub {
  font-size: 15px;
  color: #ffffff;
  /* opacity: 0.9; */
}

.trainings {
  padding: 110px 16px 120px
}

.trainings-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 40px;
}

.section-title-italic {
  font-style: italic;
}

.trainings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.training-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 14px 20px;
}

.training-thumb {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 20px;
  margin-top: 3px;
}

.training-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.training-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.training-play-inner {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.7);
}

.training-body {
  /* padding-top: 4px; */
  padding: 12px 24px;
}

.training-title {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 2;
  margin-bottom: 24px;
}

.training-meta-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 40px;
  row-gap: 30px;
  align-items: flex-start;
}

.training-meta {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 260px;
}

.meta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.meta-label {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 4px;
}

.meta-value {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.training-cta span {
  padding-inline: 22px;
}

.training-cta-icon {
  width: 14px;
  height: 14px;
  margin-left: 10px;
}

.how-section {
  padding: 100px 16px 120px;
}

.how-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.how-title {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 55px;
  font-style: italic;
}

.how-title-highlight {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(
    120deg,
    #e48531 0%,
    #e4d254 50%,
    #53bac3 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.how-video {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.how-video-thumb {
  display: block;
  width: 88%;
  margin: auto;
  height: auto;
  object-fit: cover;
}

.how-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-video-play-inner {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(
    120deg,
    #e48531 0%,
    #e4d254 50%,
    #53bac3 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.how-video-play-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  inset: 2px;
}

.how-video-play-icon {
  position: relative;
  width: 0;
  height: 0;
  border-left: 18px solid #ffffff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.reviews-section {
  padding: 130px 16px 120px;
}

.reviews-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.reviews-title {
  font-style: italic;
  margin-bottom: 52px;
  text-align: center;
}

.reviews-cta-wrap {
  margin-top: 71px;
  display: flex;
  justify-content: center;
}

/* Hide Swiper pagination dots for reviews slider */
.swiper-pagination {
  display: none !important;
}

/* Swiper spacing for reviews */
.reviews-swiper {
  padding: 18px 8px 10px;
}

.reviews-swiper .swiper-slide {
  height: auto;
  min-width: 0;
}

.review-card {
  height: 100%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.review-inner {
  display: flex;
  gap: 18px;
  padding: 18px;
  min-height: 360px;
  min-width: 0;
}

.thumb {
  position: relative;
  width: 240px;
  min-width: 240px;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111;
  flex: 0 0 auto;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.play .ring {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
}

.play .ring::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: conic-gradient(from 210deg, #e48531, #53bac3, #e48531);
  -webkit-mask: radial-gradient(circle, transparent 63%, #000 64%);
  mask: radial-gradient(circle, transparent 63%, #000 64%);
  opacity: 0.85;
}

.play .triangle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-42%, -50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid rgba(255, 255, 255, 0.92);
}

.content {
  flex: 1;
  padding: 4px 6px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  position: relative;
  flex: 0 0 auto;
}

.avatar::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: conic-gradient(from 210deg, #53bac3, #e48531, #53bac3);
  -webkit-mask: radial-gradient(circle, transparent 68%, #000 69%);
  mask: radial-gradient(circle, transparent 68%, #000 69%);
  opacity: 0.75;
  pointer-events: none;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.person-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.8;
  min-width: 0;
}

.person-name {
  font-weight: 300;
  font-size: 15px;
}

.person-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.stars {
  display: flex;
  gap: 4px;
  margin-left: 58px;
  flex-wrap: wrap;
}

.star {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.star svg {
  width: 100%;
  height: 100%;
  fill: #f5d247;
  filter: drop-shadow(0 3px 10px rgba(245, 210, 71, 0.15));
}

.review-text {
  margin-top: 8px;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
}

.review-text b {
  color: #ffffff;
}

/* Week comparison section */
.week-comparison {
  padding: 0;
}

/* Copied from swipertest.html for week comparison */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 18px 90px;
}

.title {
  text-align: center;
  font-style: italic;
  font-size: 20px ;
  font-weight: 300;
  letter-spacing: 0.2px;
  margin: 0 0 66px;
  color: rgba(255, 255, 255, 0.92);
}

.hl {
  background: linear-gradient(90deg, #ff9a1a, #20d6d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.card {
  position: relative;
  border-radius: 26px;
  padding: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  min-height: 520px;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 1.5px;
  background: linear-gradient(90deg, #ff9a1a, #20d6d2);
  -webkit-mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.9;
  pointer-events: none;
}

.card-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-h {
  text-align: center;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  margin: 6px 0 22px;
  color: rgba(255, 255, 255, 0.92);
}

.edit-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px 2px;
}

.editable {
  width: 100%;
  height: 100%;
  min-height: 340px;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  outline: none;
  resize: none;
  font-style: italic;
  font-family: inherit;
}

.editable::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.list {
  margin: 8px auto 0;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 420px;
}

.list li {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  padding: 17px 0;
  color: rgba(255, 255, 255, 0.84);
  font-style: italic;
  line-height: 1.45;
}

.dot {
    margin-top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(90deg, #8de27a, #47ffd6);
    box-shadow: 0 0 0 3px rgba(141, 226, 122, 0.08);
    flex: 0 0 auto;
  }
  
  /* Gradient bullet for week list items */
  .week-list li::before {
    content: "";
    margin-top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(90deg, #8de27a, #47ffd6);
    box-shadow: 0 0 0 3px rgba(141, 226, 122, 0.08);
    flex: 0 0 auto;
  }

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card {
    min-height: 480px;
  }

  .editable {
    min-height: 260px;
  }
}

/* FAQ section */
.faq-section {
  padding: 72px 18px 90px;
}

.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.faq-title {
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.2px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  margin: 0 0 56px 0;
  text-transform: lowercase;
}

.faq-list {
  width: min(640px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.faq-item {
  border-radius: 14px;
}

.faq-trigger {
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.faq-q {
  font-size: 16px;
  font-weight: 300;
  color: rgb(255, 255, 255);
  line-height: 1.35;
  padding-left: 4px;
}

.faq-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-right: 4px;
}

.plus {
  width: 18px;
  height: 18px;
  position: relative;
  transform: rotate(0deg);
  transition: transform 0.22s ease;
  opacity: 0.9;
}

.plus::before,
.plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer-inner {
  padding: 2px 34px 8px 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
}

.faq-item[data-open="true"] .plus {
  transform: rotate(45deg);
}

.faq-item[data-open="true"] .faq-trigger {
  padding-bottom: 12px;
}

.faq-item[data-open="true"] .faq-answer-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.faq-trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.18);
  outline-offset: 6px;
  border-radius: 10px;
}

/* Footer / pills section (from swipertest.html) */
.footer-section {
  position: relative;
  min-height: 381px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 22px 90px;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 28% 70%, rgba(114, 255, 164, 0.12) 0%, rgba(0, 0, 0, 0) 60%),
    radial-gradient(800px 420px at 70% 80%, rgba(255, 153, 26, 0.12) 0%, rgba(0, 0, 0, 0) 62%),
    #000000;
}

.footer-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
  opacity: 0.9;
  z-index: 3;
}

.footer-haze {
  position: absolute;
  inset: -140px;
  background:
    radial-gradient(700px 300px at 22% 70%, rgba(114, 255, 164, 0.1) 0%, rgba(0, 0, 0, 0) 62%),
    radial-gradient(650px 300px at 76% 78%, rgba(255, 153, 26, 0.1) 0%, rgba(0, 0, 0, 0) 65%);
  filter: blur(12px);
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 4;
  width: min(980px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 58px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}

.footer-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-pills {
  width: min(820px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.footer-pill {
  width: 240px;
  height: 54px;
  border-radius: 999px;
  position: relative;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.footer-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 999px;
  background: var(--footer-grad, linear-gradient(90deg, rgba(255, 153, 26, 0.95), rgba(92, 255, 169, 0.85)));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.95;
}

.footer-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-pill svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.9);
}

.footer-pill-left {
  --footer-grad: linear-gradient(90deg, rgba(255, 153, 26, 0.95), rgba(92, 255, 169, 0.85));
}

.footer-pill-mid {
  --footer-grad: linear-gradient(90deg, rgba(255, 153, 26, 0.95), rgba(64, 223, 255, 0.9));
}

.footer-pill-right {
  --footer-grad: linear-gradient(90deg, rgba(255, 153, 26, 0.95), rgba(92, 255, 169, 0.85));
}

.footer-bottom-gradient {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  max-width: 1600px;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 720px) {
  .reviews-section {
    padding: 80px 16px 80px;
  }

  .review-inner {
    flex-direction: column;
    min-height: auto;
  }

  .thumb {
    width: 100%;
    min-width: 100%;
    height: 260px;
  }

  .review-text {
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .footer-pills {
    flex-direction: column;
    gap: 18px;
  }

  .footer-pill {
    width: min(420px, 100%);
  }

  .footer-section {
    padding-bottom: 120px;
  }
}

@media (max-width: 520px) {
  .faq-title {
    margin-bottom: 44px;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-q {
    font-size: 13.2px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding-inline: 20px;
  }

  .navbar-inner {
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .btn-signin span {
    padding-inline: 18px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 32px;
    margin-top: 56px;
    align-items: center;
    text-align: center;
  }

  .trainings {
    padding-top: 56px;
  }

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

  .training-card {
    padding: 12px 12px 20px;
  }

  .training-meta-group {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .training-cta {
    justify-self: flex-start;
  }
}

/* Add to styles.css */

/* Download Page Specifics */
.download-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 40px;
}

.download-title {
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
}

.download-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  max-width: 400px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 380px;
  align-items: center;
}

.btn-os-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-os-download:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.os-icon {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.divider-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

/* Coming Soon Text Style */
.coming-soon-text {
  color: #aaa;
  font-size: 14px;
  margin-top: 5px;
}

/* --- MODAL STYLES --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-title {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #fff;
}

.modal-sub {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-weight: 300;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 400;
}

.form-input {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: #e48531;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

.modal-submit-wrap {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.btn-submit {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 100%;
  max-width: 200px;
}

.btn-submit span {
  width: 100%;
  padding: 14px 0;
  font-weight: 400;
  font-size: 16px;
}




/* Modal of how section  */
/* --- Section Styling (Your existing styles) --- */
  .how-section {
    position: relative;
    padding: 50px 0;
    text-align: center;
  }
  
  .how-video {
    position: relative;
    display: inline-block;
    cursor: pointer; /* Shows it's clickable */
    transition: transform 0.3s ease;
  }

  .how-video:hover {
    transform: scale(1.02);
  }

  /* --- MODAL STYLING (The Popup) --- */
  .video-modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full screen height */
    background-color: rgba(0, 0, 0, 0.9); /* Dark background */
    z-index: 2147483647; /* MAX Z-INDEX to sit on top of everything */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
  }

  .video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9; /* Keeps YouTube shape */
    background: #000;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
  }

  .video-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 2147483648;
  }
  
  .video-close-btn:hover {
    color: #ff4444;
  }



  /* to show the bydefault code 
  
  */