/* ============================================================
   ROOT & RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --black: #0d0d0d;
  --dark-bg: rgba(13, 13, 13, 0.72);
  --input-bg: rgba(255, 255, 255, 0.92);
  --gray: #808380;
  --gray-light: #dddddd;
  --accent: #000000;
  --error: #ff4d4d;
  --success: #22c55e;

  --font-heading: "Geist";
  --font-logo: "-apple-system", "BlinkMacSystemFont", "Segoe UI", "sans-serif";
  --font-body: "Inter";

  /* spacing scale */
  --nav-h: 80px;
  --pad-x: clamp(1.25rem, 5vw, 5rem);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid #1e1e1e;
  /* margin-top: 1.5rem; */
}

.nav-inner {
  background: var(--accent);
  border-radius: 16px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  font-weight: bold;
  /* padding: 0 18px; */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.nav-logo {
  font-family: var(--font-logo);
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  color: var(--white);
  text-decoration: none;
  margin-right: auto;
  letter-spacing: 0.5px;
  transition: opacity 0.25s;
  font-weight: 700;
}
.nav-logo:hover {
  opacity: 0.7;
}

/* Single nav link style */
.nav-single-link {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.4vw, 1.2rem);
  color: var(--white);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  font-weight: 400;
  margin-left: 2rem;
  transition: color 0.25s;
}

.nav-single-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}
.nav-single-link:hover::after {
  width: 100%;
}

.nav-single-link:hover {
  color: var(--gray-light);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  padding: 3rem 1rem;
  /* padding: clamp(4rem, 10vh, 7rem) var(--pad-x); */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #000000;
  /* background: url('../assets/hero-background.png') center center / cover no-repeat; */
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(10, 10, 10, 0.55) 50%,
    rgba(10, 10, 10, 0.3) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: clamp(1.5rem, 3.5vw, 3.5rem); */
  /* Right padding = 0 so slider peek bleeds to viewport edge */
  /* padding: calc(var(--nav-h) + 2rem) 0 clamp(3rem, 8vh, 6rem) var(--pad-x); */
  overflow: hidden;
  margin-top: 5rem;
}

/* ---- LEFT ---- */
.hero-left {
  flex: 1 1 450px;
  /* max-width: 680px; */
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 7vw, 2rem);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: clamp(1rem, 3.5vh, 1.6rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: clamp(1.6rem, 4vh, 2.2rem);
  font-weight: 500;
}

/* Form */
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-direction: column;
  max-width: 400px;
  margin-bottom: 0.8rem;
}

.input-wrap {
  display: flex;
  flex-direction: column;
}

.input-wrap input {
  width: 100%;
  height: 52px;
  /* background: var(--input-bg); */
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background-color: var(--black);
  border: 1px solid rgb(52, 52, 52);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
  margin-left: 1px;
}
.input-wrap input::placeholder {
  color: #888;
}
.input-wrap input:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.input-wrap input.error-field {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.18);
}

.field-error {
  font-size: 0.78rem;
  color: var(--error);
  min-height: 18px;
  padding-left: 4px;
  font-weight: 700;
  animation: shake 0.35s ease;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(5px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

.btn-subscribe {
  width: 100%;
  min-width: 160px;
  height: 52px;
  background: var(--gray);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  padding: 0 1.35rem;

  background: #fff;
  color: black;
  /* font-size: 14px; */
  font-weight: bold;
}

.btn-subscribe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 0;
}
.btn-subscribe span {
  z-index: 1;
}

.btn-subscribe:hover::before {
  transform: scaleX(1);
}

.btn-subscribe:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-subscribe:active {
  transform: translateY(0) scale(0.97);
}

.hero-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-submit-btn__label {
  position: relative;
  z-index: 1;
  transition: opacity 0.18s ease;
}

.hero-submit-btn__loader {
  position: absolute;
  inset: 50% 1.2rem auto;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-submit-btn__loader-line {
  width: 70%;
  height: 3px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 1);
  overflow: hidden;
  position: relative;
}

.hero-submit-btn__loader-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 45%;
  border-radius: inherit;
  background: #ffffff;
  animation: floatingQueryLineLoader 0.9s ease-in-out infinite;
}

.hero-submit-btn.is-loading {
  cursor: wait;
  opacity: 0.9;
}

.hero-submit-btn.is-loading::before {
  transform: scaleX(0);
}

.hero-submit-btn.is-loading:hover {
  color: var(--white);
  transform: none;
  box-shadow: none;
}

.hero-submit-btn.is-loading .hero-submit-btn__loader {
  display: inline-flex;
  width: calc(100% - 2.4rem);
}

.hero-submit-btn.is-loading .hero-submit-btn__label {
  opacity: 0;
}

.hero-submit-btn:disabled {
  pointer-events: none;
}

.hero-submit-error {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  color: var(--error);
  font-size: 0.82rem;
  font-weight: 700;
  transition:
    max-height 0.2s ease,
    opacity 0.2s ease,
    margin 0.2s ease;
}

.hero-submit-error:not(:empty) {
  max-height: 15px;
  opacity: 1;
  margin: -0.1rem 0 0.7rem;
}

.hero-quote {
  font-size: clamp(1rem, 1.6vw, 0.75rem);
  font-weight: 500;
  color: var(--white);
  margin-top: clamp(1rem, 1vh, 2rem);
  font-style: normal;
  letter-spacing: 0.3px;
  text-align: center;
}

/* ---- RIGHT / HERO IMAGE ---- */
.hero-right {
  /* flex: 0 1 clamp(320px, 35vw, 520px); */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* clip the peeking slide at the right edge */
  overflow: hidden;
  /* right padding creates the peek gap from viewport edge */
  /* padding-right: clamp(0.5rem, 2vw, 2rem); */
  min-width: 0;
}

.hero-right img {
  width: 100%;
  max-width: 520px;
  height: clamp(24rem, 38vw, 34rem);
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

@media (max-width: 767px) {
  .hero-right img {
    height: auto;
    width: 100%;
    max-width: 400px;
    object-fit: contain;
  }
}

/* ============================================================
   SCROLL-IN ANIMATIONS
   ============================================================ */
/* [data-animate] {
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
[data-animate="fade-left"]  { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px);  }
[data-animate="fade-up"]    { transform: translateY(30px);  }
[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
} */

/* ============================================================
   POPUP
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

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

.popup {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 5vw, 3rem);
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.85) translateY(30px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.popup-overlay.active .popup {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.popup-close svg {
  width: 16px;
  height: 16px;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg);
}

.popup-icon {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  margin-bottom: 1rem;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from {
    transform: scale(0) rotate(-20deg);
  }

  to {
    transform: scale(1) rotate(0);
  }
}

.popup-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.popup-msg {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.popup.success .popup-title {
  color: var(--success);
}

.popup.error .popup-title {
  color: var(--error);
}

/* ============================================================
   MENTORSHIP CHECKOUT MODAL
   ============================================================ */
.checkout-overlay,
.payment-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 7, 0.7);
  backdrop-filter: blur(3px);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  padding: 1.25rem;
}

.checkout-overlay.active,
.payment-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal,
.payment-modal {
  width: min(900px, 100%);
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e4e4e4;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.3);
  color: #111;
  position: relative;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}

.checkout-overlay.active .checkout-modal,
.payment-overlay.active .payment-modal {
  transform: translateY(0) scale(1);
}

.checkout-modal {
  padding: clamp(1.2rem, 3.2vw, 2rem);
  max-height: min(92vh, 980px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.checkout-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #f4f4f4;
  color: #181818;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.checkout-close svg {
  width: 16px;
  height: 16px;
}

.checkout-close:hover {
  background: #e8e8e8;
  transform: rotate(90deg);
}

.checkout-title,
.payment-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  letter-spacing: 1px;
  color: #0d0d0d;
}

.checkout-selected {
  margin-top: 0.45rem;
  font-size: 0.95rem;
  color: #5a5a5a;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.checkout-selected-label {
  color: #666;
  font-weight: 600;
}

.checkout-selected-plan {
  color: #111;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.checkout-selected-amount {
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
}

.checkout-selected-note {
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
}

.checkout-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, 0.34) transparent;
  padding-left: 0.25rem;
  padding-right: 0.35rem;
}

.checkout-form::-webkit-scrollbar {
  width: 7px;
}

.checkout-form::-webkit-scrollbar-track {
  background: transparent;
}

.checkout-form::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.34);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.checkout-form::-webkit-scrollbar-thumb:hover {
  background: rgba(17, 17, 17, 0.48);
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 0.9rem;
}

.checkout-field--full {
  grid-column: 1 / -1;
}

.checkout-plan-questions {
  margin-top: 0.05rem;
}

.checkout-plan-questions-hint {
  color: #575757;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.checkout-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d0d0d;
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  background: #fff;
  padding: 0.78rem 0.9rem;
  font: inherit;
  color: #111;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.checkout-field input {
  min-height: 46px;
}

.checkout-field textarea {
  min-height: 100px;
  resize: vertical;
}

.checkout-date-picker,
.checkout-time-picker {
  position: relative;
}

.checkout-date-button,
.checkout-time-button {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font: inherit;
  text-align: left;
  padding: 0.78rem 0.9rem;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.checkout-date-button:focus,
.checkout-date-button:hover,
.checkout-time-button:focus,
.checkout-time-button:hover {
  border-color: #222;
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.12);
}

.checkout-date-button.is-selected,
.checkout-time-button.is-selected {
  font-weight: 700;
}

.checkout-date-button:disabled,
.checkout-time-button:disabled {
  background: #f1f1f1;
  color: #777;
  cursor: not-allowed;
}

.checkout-date-popover {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  z-index: 8;
  width: 100%;
  min-width: 280px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  padding: 0.65rem;
}

.checkout-date-popover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}

.checkout-date-month {
  font-size: 0.9rem;
  font-weight: 700;
  color: #141414;
}

.checkout-date-nav {
  border: 1px solid #d5d5d5;
  background: #f8f8f8;
  color: #1f1f1f;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkout-date-weekdays,
.checkout-date-grid {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.2rem;
}

.checkout-date-weekdays span {
  text-align: center;
  font-size: 0.69rem;
  color: #6d6d6d;
  font-weight: 700;
  padding-bottom: 0.2rem;
}

.checkout-date-cell {
  border: 1px solid #dfdfdf;
  background: #fff;
  color: #141414;
  height: 34px;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
}

.checkout-date-cell.is-selected {
  background: #101010;
  color: #fff;
  border-color: #101010;
  font-weight: 700;
}

.checkout-date-cell.is-today {
  border-color: #101010;
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.28);
  font-weight: 700;
}

.checkout-date-cell.is-today.is-selected {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.checkout-date-cell.is-disabled {
  background: #f4f4f4;
  color: #a6a6a6;
  border-color: #ececec;
  cursor: not-allowed;
}

.checkout-date-cell--empty {
  border: none;
  background: transparent;
}

.checkout-time-popover {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  z-index: 9;
  width: 100%;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  padding: 0.55rem;
}

.checkout-time-list {
  display: grid;
  gap: 0.35rem;
  max-height: 220px;
  overflow-y: auto;
}

.checkout-time-option {
  border: 1px solid #dfdfdf;
  background: #fff;
  color: #151515;
  border-radius: 8px;
  min-height: 38px;
  text-align: left;
  padding: 0.45rem 0.6rem;
  font-size: 0.86rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.checkout-time-option:hover,
.checkout-time-option:focus {
  border-color: #151515;
  background: #f7f7f7;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
  border-color: #222;
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.12);
}

.checkout-field .error-field {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.16);
}

.checkout-error {
  min-height: 16px;
  font-size: 0.78rem;
  color: var(--error);
  font-weight: 700;
}

.checkout-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.25rem;
}

.checkout-submit-btn {
  min-width: 150px;
  min-height: 46px;
  border: 1px solid #0f0f0f;
  background: #0f0f0f;
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checkout-submit-btn:hover {
  background: #2b2b2b;
  transform: translateY(-1px);
}

.checkout-submit-btn__label {
  transition: opacity 0.18s ease;
}

.checkout-submit-btn__loader {
  position: absolute;
  inset: 50% 1.2rem auto;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
}

.checkout-submit-btn__loader-line {
  width: 70%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  position: relative;
}

.checkout-submit-btn__loader-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 45%;
  border-radius: inherit;
  background: #ffffff;
  animation: floatingQueryLineLoader 0.9s ease-in-out infinite;
}

.checkout-submit-btn.is-loading {
  cursor: wait;
  opacity: 0.9;
}

.checkout-submit-btn.is-loading:hover {
  background: #0f0f0f;
  transform: none;
}

.checkout-submit-btn.is-loading .checkout-submit-btn__loader {
  display: inline-flex;
  width: calc(100% - 2.4rem);
}

.checkout-submit-btn.is-loading .checkout-submit-btn__label {
  opacity: 0;
}

.checkout-submit-btn:disabled {
  pointer-events: none;
}

.payment-modal {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  max-width: 420px;
  width: 90%;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  transform: scale(0.85) translateY(30px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payment-overlay.active .payment-modal {
  transform: scale(1) translateY(0);
}

.payment-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}

.payment-close svg {
  width: 16px;
  height: 16px;
}

.payment-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg);
}

.payment-icon {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  margin-bottom: 1rem;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icon-symbol {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.payment-icon-symbol--success {
  color: #15803d;
  background: rgba(21, 128, 61, 0.14);
  border: 2px solid rgba(21, 128, 61, 0.38);
}

.payment-icon-symbol--failed {
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.16);
  border: 2px solid rgba(185, 28, 28, 0.42);
}

.payment-title {
  color: var(--white);
  margin-bottom: 0.65rem;
}

.payment-message {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.payment-query-message {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.payment-query-details {
  margin-top: 0.8rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.7rem 0.78rem;
}

.payment-query-details-row {
  display: grid;
  grid-template-columns: minmax(95px, auto) 1fr;
  column-gap: 0.6rem;
  row-gap: 0.2rem;
  font-size: 0.83rem;
  line-height: 1.4;
}

.payment-query-details-row + .payment-query-details-row {
  margin-top: 0.45rem;
  padding-top: 0.45rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.payment-query-details-key {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-transform: capitalize;
}

.payment-query-details-value {
  color: rgba(255, 255, 255, 0.94);
  overflow-wrap: anywhere;
}

.payment-external-message {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.payment-modal.success .payment-title {
  color: #15803d;
}

.payment-modal.failed .payment-title {
  color: #b91c1c;
}

/* ============================================================
   FLOATING QUERY WIDGET
   ============================================================ */
.floating-query-btn {
  position: fixed;
  right: clamp(0.85rem, 2.2vw, 1.5rem);
  bottom: clamp(1rem, 2.8vh, 1.8rem);
  z-index: 240;
  min-height: 52px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  background: linear-gradient(125deg, #1e1e1e 0%, #2b2b2b 52%, #3a3a3a 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: clamp(0.8rem, 1.6vw, 0.92rem);
  cursor: pointer;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
  animation: floatingPulse 3.2s ease-in-out infinite;
}

.floating-query-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  filter: saturate(1.08);
}

.floating-query-btn:active {
  transform: translateY(0) scale(0.97);
}

@keyframes floatingPulse {
  0%,
  100% {
    box-shadow:
      0 14px 32px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  }

  50% {
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  }
}

.floating-query-overlay {
  position: fixed;
  inset: 0;
  z-index: 255;
  background: rgba(7, 7, 7, 0.42);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.5rem);
}

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

.floating-query-widget {
  width: min(430px, 100%);
  background: #ffffff;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  padding: clamp(1rem, 2.8vw, 1.4rem);
  position: relative;
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.22s ease;
}

.floating-query-overlay.active .floating-query-widget {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.floating-query-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  /* color: var(--white); */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.floating-query-close svg {
  width: 16px;
  height: 16px;
}

.floating-query-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg);
}

.floating-query-title {
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 2.25vw, 1.35rem);
  letter-spacing: 0.7px;
  color: #111111;
  max-width: calc(100% - 36px);
  line-height: 1.25;
}

.floating-query-subtitle {
  margin-top: 0.3rem;
  color: #5c5c5c;
  font-size: 0.92rem;
  font-weight: 600;
}

.floating-query-content[hidden],
.floating-query-form[hidden],
.floating-query-success[hidden] {
  display: none !important;
}

.floating-query-form {
  margin-top: 0.62rem;
  display: grid;
  gap: 0.48rem;
}

.floating-query-form .checkout-actions {
  justify-content: center;
}

.floating-query-form .checkout-field {
  gap: 0.2rem;
}

.floating-query-form .checkout-field textarea {
  min-height: 112px;
}

.floating-query-submit-btn {
  position: relative;
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.floating-query-submit-btn__label {
  transition: opacity 0.18s ease;
}

.floating-query-submit-btn__loader {
  position: absolute;
  inset: 50% 1.2rem auto;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
}

.floating-query-submit-btn__loader-line {
  width: 70%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  position: relative;
}

.floating-query-submit-btn__loader-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 45%;
  border-radius: inherit;
  background: #ffffff;
  animation: floatingQueryLineLoader 0.9s ease-in-out infinite;
}

.floating-query-submit-btn.is-loading {
  cursor: wait;
  opacity: 0.9;
}

.floating-query-submit-btn.is-loading .floating-query-submit-btn__loader {
  display: inline-flex;
  width: calc(100% - 2.4rem);
}

.floating-query-submit-btn.is-loading .floating-query-submit-btn__label {
  opacity: 0;
}

.floating-query-submit-btn:disabled {
  pointer-events: none;
}

.floating-query-submit-error {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.8rem;
  color: var(--error);
  font-weight: 700;
  margin-top: 0;
  transition:
    max-height 0.2s ease,
    opacity 0.2s ease,
    margin-top 0.2s ease;
}

.floating-query-submit-error:not(:empty) {
  max-height: 36px;
  opacity: 1;
  margin-top: -0.2rem;
}

.floating-query-success {
  margin-top: 1rem;
  text-align: center;
  padding: 1.15rem 0.6rem 0.8rem;
  animation: querySuccessIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-query-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.9rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 20%, #2fc56f 0%, #0f8b40 100%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 139, 64, 0.35);
}

.floating-query-success h4 {
  font-family: var(--font-heading);
  color: #15803d;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  letter-spacing: 0.4px;
}

.floating-query-success p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.92rem;
}

@keyframes querySuccessIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes floatingQueryLineLoader {
  0% {
    left: -45%;
  }

  100% {
    left: 100%;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Large TV / 4K (≥ 1920px) */
@media (min-width: 1920px) {
  :root {
    --pad-x: 8rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .slider-viewport {
    width: 640px;
  }

  .slide img {
    height: 620px;
  }

  .hero-right img {
    height: 40rem;
  }
}

/* Desktop (≥ 1280px) – default covered above */

/* Laptop (1024 – 1279px) */

@media (max-width: 767px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding-bottom: 4rem;
  }
  :root {
    --nav-h: 72px;
  }
  .nav-single-link {
    margin-left: 1.2rem;
    font-size: 0.9rem;
    padding-bottom: 2px;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .subscribe-form {
    align-items: center;
    width: 100%;
  }
  .form-row {
    width: 100%;
  }

  .hero-right img {
    height: 25rem;
  }

  .slider-viewport {
    width: min(460px, 92vw);
  }

  .slide img {
    height: clamp(280px, 46vw, 420px);
  }
}

/* Tablet portrait (600 – 767px) */
@media (max-width: 767px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding-bottom: 4rem;
  }
  :root {
    --nav-h: 72px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .checkout-modal {
    padding: 1.05rem;
    border-radius: 14px;
  }

  .checkout-form {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }

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

  .checkout-date-popover {
    min-width: 100%;
  }

  .payment-modal {
    border-radius: 14px;
    padding: 1.2rem;
  }

  .checkout-actions {
    justify-content: stretch;
  }

  .checkout-submit-btn {
    width: 100%;
  }

  .floating-query-overlay {
    justify-content: center;
    align-items: center;
  }

  .floating-query-widget {
    border-radius: 14px;
  }

  /* Restore symmetric padding; slider will negate it */
  /* Center left content */
  .hero-left {
    text-align: center;
    max-width: 100%;
  }
  .hero-title {
    font-size: 1.6rem;
    text-align: left;
    line-height: 40px;
    font-weight: 500;
  }
  .form-row {
    gap: 12px;
    justify-content: center;
    width: 90%;
  }
  .subscribe-form {
    align-items: center;
  }

  .subscribe-form .input-wrap input {
    width: 100%;
  }

  /* Slider: bleed full viewport width, active slide centred */
  .hero-right {
    width: 100%;
    height: auto;
    /* margin-left: calc(-1 * var(--pad-x)); */
    align-items: center;
    padding-right: 0;
    overflow: hidden;
  }

  .hero-right img {
    height: 30rem;
  }
}

/* Large mobile (420 – 599px) */
@media (max-width: 599px) {
  .hero-subtitle {
    font-size: 1.2rem;
  }

  .form-row {
    flex-direction: column;
  }

  .input-wrap {
    flex: 1 1 auto;
  }

  .btn-subscribe {
    width: 100%;
    min-width: unset;
  }

  .slide {
    border-radius: 20px;
  }
  .form-row {
    width: 100%;
  }
  .slide img {
    height: clamp(260px, 62vw, 340px);
    border-radius: 20px;
  }
}

/* Small mobile (≤ 419px) */
@media (max-width: 419px) {
  :root {
    --pad-x: 1rem;
    --nav-h: 66px;
  }

  .nav-inner {
    /* padding: 0 16px; */
    border-radius: 12px;
  }

  .hero-title {
    font-size: clamp(1.4rem, 12vw, 1.4rem);
  }

  .input-wrap input {
    height: 46px;
  }

  .btn-subscribe {
    height: 46px;
  }

  .checkout-overlay,
  .payment-overlay {
    padding: 0.8rem;
  }

  .floating-query-btn {
    right: 0.75rem;
    bottom: 0.85rem;
    min-height: 46px;
    padding: 0.62rem 1rem;
    font-size: 0.72rem;
  }

  .floating-query-overlay {
    padding: 0.75rem;
  }
}

/* ============================================================
   MENTORSHIP SECTION
   ============================================================ */
.mentorship {
  /* background: linear-gradient(180deg, #050505 0%, #0d0d0d 52%, #111111 100%); */
  background-color: #000000;
  padding: clamp(4rem, 10vh, 7rem) var(--pad-x);
  padding-top: 2rem;
  border-top: 1px solid #1e1e1e;
}

.mentorship-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.mentorship-pretitle {
  font-size: 0.8rem;
  color: #e0e0e0;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.mentorship-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 10.8vw, 1.5rem);
  text-align: center;
  color: #f5f5f5;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 900;
}

.mentorship-posttitle {
  font-size: 1rem;
  color: #e0e0e0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
}

/* ---- Carousel wrapper ---- */
.mentorship-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mentorship-viewport {
  flex: 1;
  overflow: visible;
  /* padding gives shadows room to render without clipping */
  padding: 12px 0px;
  margin: -12px -8px;
}

.mentorship-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

/* ---- Card ---- */
.ms-card {
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.6s ease;
  /* opacity for scroll-in */
}

.ms-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.56);
}

/* Card header box — icon + title grouped */
.ms-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(1.6rem, 3.5vh, 2.4rem) clamp(1.2rem, 2.5vw, 1.75rem)
    clamp(1.2rem, 2.5vh, 1.6rem);
  background: #0d0d0d;
  border-bottom: 1px solid #2b2b2b;
  position: relative;
  overflow: hidden;
}

/* Decorative corner accent */
.ms-card-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  /* background: linear-gradient(225deg, rgba(255,255,255,0.14) 0%, transparent 60%); */
  pointer-events: none;
}

/* Icon circle */
.ms-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #1f1f1f;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.ms-card-icon img {
  display: block;
  filter: brightness(0) invert(1);
}

/* Card title */
.ms-card-title {
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 1.15vw, 1rem);
  text-align: center;
  color: #fff;
  letter-spacing: 1.5px;
  line-height: 1.3;
  margin: 0;
}

/* Card image */
.ms-card-img-wrap {
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}

.ms-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease;
}

.ms-card:hover .ms-card-img {
  transform: scale(1.05);
}

/* Card body */
.ms-card-body {
  padding: clamp(1.2rem, 2.5vh, 1.75rem) clamp(1.2rem, 2.5vw, 1.75rem);
  flex: 1;
}

.ms-included-label {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  text-align: center;
}

/* Bullet list */
.ms-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ms-included-list li {
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  color: #e0e0e0;
  line-height: 1.55;
  padding-left: 1.1rem;
  position: relative;
}

.ms-included-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f5f5f5;
  font-size: 0.75rem;
  top: 0.15em;
}

/* Plain paragraph inside .ms-card-body also gets consistent styling */
.ms-card-body p:not(.ms-included-label) {
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  color: #e0e0e0;
  line-height: 1.6;
  margin-top: 0.45rem;
}

/* Price row — amount + type side by side */
.ms-card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: left;
  gap: 0.4rem;
  padding: 0 1.25rem 0.5rem;
  margin-top: 2rem;
}

.ms-price-amount {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0px;
  line-height: 1;
}

.ms-price-type {
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  font-weight: 500;
  color: #a9a9a9;
  letter-spacing: 0.3px;
}

.ms-price-note {
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  font-weight: 500;
  color: #a9a9a9;
  letter-spacing: 0.3px;
}

/* Tag badge below price */
.ms-card-tag {
  display: inline-block;
  margin: 0 1rem;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  background: #1e1e1e;
  color: #d7d7d7;
  border: 1px solid #333333;
  font-size: clamp(0.72rem, 0.95vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: left;
  width: fit-content;
  align-self: left;
}

/* Most Popular label on Card 2 */
.ms-popular-label {
  display: block;
  text-align: center;
  padding: 0.55rem 1rem;
  background: #fff;
  color: #111111;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Popular card — highlighted border */
.ms-card--popular {
  border: 2px solid #666666;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.6);
  position: relative;
  /* Pull card up slightly to make it stand out */
  /* transform: translateY(-6px); */
}

.ms-card--popular:hover {
  transform: translateY(-14px);
}

/* Card footer */
.ms-card-footer {
  padding: clamp(1rem, 2vh, 1.4rem) clamp(1.2rem, 2.5vw, 1.75rem)
    clamp(1.4rem, 3vh, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  border-top: 1px solid #2b2b2b;
}

/* Apply Now button */
.ms-apply-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 700;
  color: #111111;
  background: #fff;
  text-decoration: none;
  letter-spacing: 1.2px;
  padding: 0.75rem 2.4rem;
  border-radius: 50px;
  border: 2px solid #fff;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.ms-apply-btn--dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--white);
}

.ms-apply-btn--dark:hover {
  /* background: var(--white);
  color: var(--black); */
  border: 2px solid var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.ms-apply-btn:hover {
  /* background: transparent; */
  /* color: #fff; */
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

/* ---- Mobile arrow buttons (hidden on desktop) ---- */
.ms-arrow {
  display: none;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111111;
  color: var(--white);
  border: 1px solid #343434;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition:
    background 0.2s,
    transform 0.2s,
    opacity 0.2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.ms-arrow:hover {
  background: #202020;
}

.ms-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* ---- Dots indicator (hidden on desktop) ---- */
.ms-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 1.6rem;
}

.ms-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5c5c5c;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  cursor: pointer;
}

.ms-dot.active {
  background: #ffffff;
  transform: scale(1.4);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  position: relative;
  overflow: hidden;
  /* background:
    linear-gradient(110deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.38) 48%, rgba(10, 10, 10, 0.72) 100%),
    url('../assets/gym-background.png') center center / cover no-repeat; */
  background-color: #000000;
  padding: clamp(4.5rem, 11vh, 7rem) var(--pad-x);
  isolation: isolate;
}

.about-section__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      transparent 28%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08),
      transparent 38%,
      transparent 62%,
      rgba(255, 132, 76, 0.08)
    );
  pointer-events: none;
  z-index: -1;
}

.about-section__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-section__line {
  position: absolute;
  left: 50%;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(255, 122, 69, 0),
    rgba(255, 122, 69, 0.95) 20%,
    rgba(255, 166, 117, 0.95) 50%,
    rgba(255, 122, 69, 0.95) 80%,
    rgba(255, 122, 69, 0)
  );
  box-shadow:
    0 0 12px rgba(255, 122, 69, 0.75),
    0 0 28px rgba(255, 122, 69, 0.25);
  opacity: 0.95;
  animation: aboutLinePulse 1.2s ease-in-out infinite;
}

.about-section__line--lg {
  top: 24px;
  width: min(62vw, 500px);
}

.about-section__line--sm {
  top: 84px;
  width: min(46vw, 360px);
  animation-delay: 0.7s;
}

@keyframes aboutLinePulse {
  0%,
  100% {
    opacity: 0.7;
    filter: brightness(0.95);
  }

  50% {
    opacity: 1;
    filter: brightness(1.1);
  }
}

.about-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  min-height: clamp(420px, 62vh, 620px);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.about-card {
  position: relative;
  width: min(100%, 720px);
  padding: clamp(1.6rem, 3vw, 2.6rem) clamp(1.3rem, 2.8vw, 2.2rem);
  border-radius: 28px;
  /* background: #e0e0e0; */
  /* border: 1px solid rgba(255, 255, 255, 0.28); */
  /* box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22); */
  /* backdrop-filter: blur(12px); */
  /* -webkit-backdrop-filter: blur(12px); */
}

.about-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 20%;
  border-radius: 0 0 28px 28px;
  /* background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18)); */
  pointer-events: none;
}

.about-card_pre_title {
  /* font-family: var(--font-bo); */
  font-size: 1.3rem;
  line-height: 1.05;
  color: #e0e0e0;
  letter-spacing: 1px;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
}

.about-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 10.8vw, 1.3rem);
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
}

.about-card__copy {
  display: grid;
  gap: 1rem;
}

.about-card__copy p {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.98rem, 1.25vw, 1.45rem);
  line-height: 1.28;
  max-width: 100%;
}

.about-trainer {
  position: relative;
  justify-self: end;
  width: min(100%, 340px);
  margin-right: 3rem;
}

.about-trainer__glow {
  position: absolute;
  inset: 12% -8% 8% 18%;
  border-radius: 30px;
  background: radial-gradient(
    circle,
    rgba(255, 127, 80, 0.22) 0%,
    rgba(255, 127, 80, 0) 72%
  );
  filter: blur(10px);
}

.about-trainer img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.about-trainer:hover img {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

/* ============================================================
   QUESTIONS SECTION
   ============================================================ */
.questions-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  /* background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.6) 0%, rgba(235, 235, 235, 0) 34%),
    radial-gradient(circle at 82% 75%, rgba(255, 255, 255, 0.55) 0%, rgba(234, 234, 234, 0) 30%),
    #dadada; */
  padding: 20px;
  /* padding-top: .3rem; */
  border-top: 1px solid #1e1e1e;
}

.questions-section__inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vh, 1.5rem);
  text-align: center;
  color: #f3f3f3;
}

.questions-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 5.2vw, 2.2rem);
  letter-spacing: 1.6px;
  margin-bottom: 0.8rem;
  color: #ffffff;
  padding: 0;
  margin: 0;
}

.questions-section__content {
  font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  color: #e0e0e0;
}

.questions-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  margin-top: 0.4rem;
}

.questions-send-message {
  appearance: none;
  border: 2px solid #f0f0f0;
  background: #f0f0f0;
  color: #0a0a0a;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.55vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.6px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.questions-send-message:hover {
  transform: translateY(-2px);
  background: #000000;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.5);
}

.questions-send-message:focus-visible,
.questions-instagram-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.34);
  outline-offset: 4px;
}

.questions-actions__or {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 1px;
}

.questions-instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: #f8f8f8;
  text-decoration: none;
  font-size: clamp(0.92rem, 1.55vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.questions-instagram-link,
.questions-instagram-link:hover,
.questions-instagram-link:focus,
.questions-instagram-link:active {
  text-decoration: none;
}

.questions-instagram-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.questions-email {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #efefef;
  text-decoration: none;
  font-size: clamp(1.15rem, 2.5vw, 2rem);
  line-height: 1.25;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.questions-email:hover {
  transform: translateY(-2px);
  opacity: 0.86;
}

.questions-email__address {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.questions-email__address:hover {
  color: #cfcfcf;
}

.questions-section__divider {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  color: rgba(255, 255, 255, 0.72);
  margin: 0.5rem 0;
}

.questions-section__cta {
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  line-height: 1.35;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.92);
}

.questions-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  transition:
    transform 0.1s ease,
    background 0.1s ease;
}

.questions-instagram:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.03);
}

.questions-icons-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.qs-icon-svg {
  --icon-size: 24px;
  --icon-color: #f8f8f8;
  width: var(--icon-size);
  height: var(--icon-size);
  color: var(--icon-color);
  fill: currentColor;
  display: inline-block;
  flex-shrink: 0;
}

.questions-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
  animation: questionsFloat 6.6s ease-in-out infinite;
}

.questions-deco .qs-icon-svg {
  display: block;
}

/* Left side: deco-1 to deco-5 */
.questions-deco--1 {
  top: 8%;
  left: 3%;
  animation-delay: 0s;
}

.questions-deco--2 {
  top: 25%;
  left: 14%;
  animation-delay: 1.2s;
}

.questions-deco--3 {
  top: 45%;
  left: 4%;
  animation-delay: 2.2s;
}

.questions-deco--4 {
  top: 63%;
  left: 14%;
  animation-delay: 0.75s;
}

.questions-deco--5 {
  top: 80%;
  left: 4%;
  animation-delay: 1.65s;
}

/* Right side: deco-6 to deco-10 (mirror of left) */
.questions-deco--6 {
  top: 8%;
  right: 3%;
  animation-delay: 0.4s;
}

.questions-deco--7 {
  top: 25%;
  right: 14%;
  animation-delay: 1.45s;
}

.questions-deco--8 {
  top: 45%;
  right: 4%;
  animation-delay: 2.1s;
}

.questions-deco--9 {
  top: 63%;
  right: 14%;
  animation-delay: 3.1s;
}

.questions-deco--10 {
  top: 80%;
  right: 4%;
  animation-delay: 2.65s;
}

@keyframes questionsFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-9px) rotate(2deg);
  }
}

/* ============================================================
   JOURNEY SECTION
   ============================================================ */
.journey-section {
  background: black;
  padding: clamp(4rem, 7vh, 5rem) var(--pad-x);
  padding-top: 2rem;
  overflow: hidden;
  border-top: 1px solid #1e1e1e;
}

.journey-inner {
  /* max-width: 1300px; */
  margin: 0 auto;
}

.journey-pretitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e0e0e0;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.journey-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 10.8vw, 1.3rem);
  text-align: center;
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.journey-intro {
  text-align: center;
  color: #e0e0e0;
  font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  margin: 0 auto clamp(3rem, 5vh, 5rem);
  line-height: 1.65;
  text-align: left;
}

/* ---- Main split layout: images left, copy right ---- */
.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
  align-items: flex-start;
}

.journey-media {
  display: block;
  max-width: 100%;
  /* margin: 0 auto; */
}

.journey-combined {
  width: 100%;
}

.journey-combined-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.journey-copy {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  max-width: 760px;
  margin: 0 auto;
}

/* ---- Individual phase ---- */
.journey-phase {
  width: 100%;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.journey-copy .about-card_pre_title {
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
}

.journey-copy .about-card__title {
  font-size: clamp(1.3rem, 10.8vw, 1.3rem);
  line-height: 1.08;
  margin-bottom: 0.95rem;
}

.journey-copy .about-card__copy {
  gap: 0.78rem;
}

.journey-copy .about-card__copy p {
  font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  line-height: 1.45;
  color: #e0e0e0;
}
.journey-copy .about-card__copy p strong {
  color: rgba(255, 255, 255, 0.9);
}

/* Highlighted phase (last one) */
.journey-phase--highlight .journey-img-wrap {
  /* border-color: rgba(255, 255, 255, 0.7); */
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 20px 52px rgba(0, 0, 0, 0.55);
}

.journey-phase--highlight .journey-phase-title {
  color: var(--white);
}

/* ---- Image wrapper ---- */
.journey-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 0;
  border: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: none;
}

.journey-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ---- Age tag ---- */
.journey-age-tag {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  text-transform: uppercase;
}

/* Highlighted age tag (Age 37 – Today) */
.journey-age-tag--today {
  background: var(--white);
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.22);
}

/* ---- Phase text below image ---- */
.journey-phase-content {
  text-align: center;
  padding: 0 0.25rem;
  margin-top: 0.95rem;
}

.journey-phase-title {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.journey-phase--highlight .journey-phase-title {
  color: var(--white);
}

.journey-phase-desc {
  font-size: clamp(0.82rem, 1.05vw, 0.92rem);
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.6;
}

.journey-phase--highlight .journey-phase-desc {
  color: #e0e0e0;
}

/* ============================================================
   JOURNEY – RESPONSIVE
   ============================================================ */

/* Tablet landscape */
@media (max-width: 1023px) {
  .journey-layout {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .journey-copy {
    max-width: 820px;
  }

  .journey-media {
    max-width: 560px;
  }

  .journey-img-wrap {
    aspect-ratio: 2 / 3;
  }

  .journey-phase-title {
    font-size: 0.82rem;
  }
}

/* Tablet portrait & mobile */
@media (max-width: 767px) {
  .journey-intro {
    margin-bottom: 2rem;
  }

  .journey-media {
    max-width: 360px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
  }

  .journey-img-wrap {
    aspect-ratio: 3 / 4;
    max-height: none;
  }

  .journey-copy {
    padding: 0;
    border-radius: 0;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #000000;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__text {
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  color: var(--gray);
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   MENTORSHIP – RESPONSIVE
   ============================================================ */

/* Tablet (768 – 1023px): keep 3 cols but tighten */
@media (max-width: 1023px) {
  .mentorship-track {
    gap: clamp(0.8rem, 2vw, 1.2rem);
  }

  .ms-card-title {
    font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  }

  .ms-price-amount {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  }

  .ms-card-tag {
    font-size: clamp(0.65rem, 0.9vw, 0.75rem);
  }

  .about-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 1.5rem;
  }

  .about-card__copy p {
    max-width: none;
    line-height: 1.45;
  }
}

/* Mobile (≤ 767px): single-card swipeable carousel */
@media (max-width: 767px) {
  .hero {
    padding-bottom: 0;
  }

  .about-section__inner {
    flex-direction: column;
  }

  .nav-links a {
    color: var(--black);
  }

  .mentorship {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mentorship-pretitle {
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }

  .mentorship-title {
    font-size: clamp(1.5rem, 10.8vw, 1.5rem);
    letter-spacing: 1.2px;
    line-height: 1.06;
    margin-bottom: 0.7rem;
  }

  .mentorship-posttitle {
    /* max-width: 18ch; */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.9rem;
    font-size: clamp(0.95rem, 5vw, 1.3rem);
    line-height: 1.18;
    letter-spacing: 0.4px;
  }

  /* Stack cards vertically on mobile – no carousel */
  .mentorship-carousel-wrap {
    display: block;
    padding: 0;
  }

  .mentorship-viewport {
    overflow: visible;
    width: 100%;
    padding: 12px 0;
    margin: -12px 0;
  }

  /* Stack track vertically; override any JS-applied transform */
  .mentorship-track {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: none !important;
  }

  .ms-card {
    flex: none;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 18px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
  }

  .ms-card:hover {
    transform: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
  }

  .ms-card--popular {
    transform: none;
    border-radius: 18px;
    border-width: 1px;
  }

  .ms-card--popular:hover {
    transform: none;
  }

  /* Hide carousel controls */
  .ms-arrow {
    display: none;
  }

  .ms-dots {
    display: none;
  }

  .ms-card-title {
    font-size: 0.88rem;
  }

  .ms-price-amount {
    font-size: 2.2rem;
  }

  .ms-card-tag {
    font-size: 0.75rem;
    padding: 0.28rem 0.8rem;
  }

  .ms-apply-btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
  }

  .ms-included-list li {
    font-size: 0.82rem;
  }

  .about-section {
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }

  .about-section__line--lg {
    top: 16px;
    width: min(72vw, 380px);
  }

  .about-section__line--sm {
    top: 66px;
    width: min(54vw, 250px);
  }

  .about-section__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.5rem;
  }

  .about-card {
    width: 100%;
    border-radius: 24px;
  }

  .about-card__title {
    font-size: clamp(1.3rem, 10.8vw, 1.3rem);
  }

  .about-card__copy p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .about-trainer {
    justify-self: center;
    width: min(100%, 300px);
    margin-right: 0;
  }

  .questions-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .questions-section__inner {
    min-height: 250px;
    gap: 0.9rem;
  }

  .questions-email {
    font-size: clamp(1.2rem, 5.8vw, 1.8rem);
    flex-wrap: wrap;
    justify-content: center;
  }

  .questions-section__cta {
    max-width: 96%;
  }

  .questions-actions {
    gap: 0.75rem 0.9rem;
  }

  .questions-send-message,
  .questions-instagram-link {
    width: 100%;
    max-width: 320px;
  }

  .questions-actions__or {
    width: 100%;
    text-align: center;
  }

  /* Hide inner-column icons on mobile — keep 3 per side */
  .questions-deco--2,
  .questions-deco--4,
  .questions-deco--7,
  .questions-deco--9 {
    display: none;
  }

  /* Left: deco-1, deco-3, deco-5 */
  .questions-deco--1 {
    top: 8%;
    left: 5%;
  }

  .questions-deco--3 {
    top: 46%;
    left: 5%;
  }

  .questions-deco--5 {
    top: 81%;
    left: 5%;
  }

  /* Right: deco-6, deco-8, deco-10 (mirror) */
  .questions-deco--6 {
    top: 8%;
    right: 5%;
  }

  .questions-deco--8 {
    top: 46%;
    right: 5%;
  }

  .questions-deco--10 {
    top: 81%;
    right: 5%;
  }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  .mentorship {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .mentorship-title {
    font-size: clamp(1.5rem, 10.8vw, 1.5rem);
    letter-spacing: 1px;
  }

  .mentorship-posttitle {
    font-size: clamp(0.92rem, 5.4vw, 1.12rem);
    margin-bottom: 1.65rem;
  }

  .mentorship-carousel-wrap {
    padding: 0;
  }

  .ms-price-badge {
    font-size: 1.15rem;
    padding: 0.5rem 1.8rem;
  }

  .about-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-card {
    padding: 1.25rem 1.05rem;
    border-radius: 20px;
  }

  .about-card::after {
    border-radius: 0 0 20px 20px;
  }

  .about-card__copy {
    gap: 0.8rem;
  }

  .about-card__copy p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .about-trainer {
    width: min(100%, 260px);
  }

  .about-trainer img {
    border-radius: 20px;
  }

  .questions-section {
    padding-left: 1rem;
    padding-right: 1rem;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
  }

  .questions-section__title {
    letter-spacing: 1px;
  }

  .questions-section__content {
    font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  }

  .questions-email {
    font-size: clamp(1.08rem, 6vw, 1.34rem);
  }

  .questions-send-message,
  .questions-instagram-link {
    max-width: 200px;
  }

  .questions-instagram {
    width: 74px;
    height: 74px;
  }

  .questions-deco {
    opacity: 0.72;
  }
}

.hylight {
  border: 1px solid #ffffff;
  border-radius: 15px;
}

.hide {
  display: none;
}

.footer-links {
  color: var(--gray);
  text-decoration: underline;
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  letter-spacing: 0.3px;
  text-align: center;
}
