.mentor-hero {
  min-height: 72vh;
  padding: 138px clamp(18px, 5vw, 72px) 76px;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(8, 18, 31, 0.94) 0%, rgba(8, 18, 31, 0.78) 48%, rgba(8, 18, 31, 0.56) 100%),
    url("assets/business-aviation-advisory-hero.png") center / cover;
}

.mentor-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.mentor-hero-copy {
  max-width: 780px;
}

.mentor-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
}

.mentor-hero-panel,
.mentor-summary-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(247, 245, 239, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.mentor-hero-panel {
  display: grid;
  gap: 16px;
}

.mentor-hero-panel strong,
.mentor-summary-card strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.18;
}

.mentor-hero-panel ul,
.mentor-path-list,
.mentor-summary-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mentor-hero-panel li,
.mentor-path-list li,
.mentor-summary-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.mentor-hero-panel li::before,
.mentor-path-list li::before,
.mentor-summary-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.mentor-stage-grid,
.mentor-course-grid,
.mentor-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.mentor-stage-card,
.mentor-course-card,
.mentor-package-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mentor-stage-card:hover,
.mentor-course-card:hover,
.mentor-package-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 111, 159, 0.36);
  box-shadow: 0 18px 42px rgba(17, 31, 48, 0.1);
}

.mentor-card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
}

.mentor-stage-card p,
.mentor-course-card > div p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mentor-stage-card h3,
.mentor-course-card h3,
.mentor-package-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
}

.mentor-price {
  display: block;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.mentor-stage-card small,
.mentor-course-card > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.mentor-stage-card em {
  color: var(--ink);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
}

.mentor-package-card {
  position: relative;
  min-height: 360px;
}

.mentor-package-card.is-best {
  border-color: rgba(184, 64, 50, 0.42);
  box-shadow: 0 24px 58px rgba(17, 31, 48, 0.13);
}

.mentor-package-card > strong {
  display: block;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.mentor-package-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.mentor-package-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(217, 225, 234, 0.78);
}

.mentor-package-card dt {
  color: var(--muted);
  font-weight: 800;
}

.mentor-package-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.mentor-stage-card strong {
  align-self: end;
  color: var(--navy);
}

.mentor-process-section {
  background: #eef4f7;
}

.mentor-comparison-section {
  background: #f8fbfd;
}

.mentor-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.mentor-comparison-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.mentor-comparison-card.is-recommended {
  border: 2px solid rgba(45, 111, 159, 0.46);
  background: linear-gradient(180deg, #ffffff 0%, #eef6fa 100%);
  box-shadow: 0 24px 58px rgba(17, 31, 48, 0.13);
}

.mentor-comparison-card span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef4f7;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mentor-comparison-card.is-recommended span {
  background: var(--blue);
  color: var(--white);
}

.mentor-comparison-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.15;
}

.mentor-comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mentor-comparison-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.mentor-comparison-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.mentor-risk-note,
.mentor-payment-note {
  width: min(1120px, 100%);
  margin: 18px auto 0;
  padding: 22px;
  border: 1px solid rgba(45, 111, 159, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.mentor-risk-note strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.22;
}

.mentor-risk-note p {
  margin: 8px 0 12px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.55;
}

.mentor-risk-note small {
  color: var(--muted);
  line-height: 1.6;
}

.mentor-value-section,
.mentor-seo-section {
  background: #fbfaf6;
}

.mentor-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.mentor-value-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.mentor-value-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.2;
}

.mentor-value-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.mentor-seo-heading {
  margin-bottom: 32px;
}

.mentor-seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.mentor-seo-body,
.mentor-related-card,
.mentor-faq-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.mentor-seo-body {
  padding: clamp(24px, 4vw, 42px);
}

.mentor-seo-body h3 {
  margin: 28px 0 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.mentor-seo-body h3:first-child {
  margin-top: 0;
}

.mentor-seo-body p,
.mentor-seo-body li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.mentor-seo-body ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.mentor-data-note {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #f8fbfd;
}

.mentor-data-note strong,
.mentor-related-card strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
}

.mentor-data-note p {
  margin-bottom: 0;
}

.mentor-related-card {
  align-self: start;
  padding: 24px;
}

.mentor-related-card .related-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mentor-related-card a {
  color: var(--blue);
  font-weight: 900;
}

.mentor-faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 12px 24px;
}

.mentor-faq-list details {
  border-bottom: 1px solid var(--line);
}

.mentor-faq-list details:last-child {
  border-bottom: 0;
}

.mentor-faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--navy);
  font-weight: 900;
}

.mentor-faq-list p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.mentor-path {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.mentor-path span {
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.mentor-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
  gap: 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.mentor-booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.mentor-booking-form .field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mentor-form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.mentor-form-status.is-error {
  color: var(--red);
  font-weight: 800;
}

.mentor-confirmation {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 120px clamp(18px, 5vw, 72px) 72px;
  background:
    linear-gradient(100deg, rgba(8, 18, 31, 0.94), rgba(8, 18, 31, 0.72)),
    url("assets/business-aviation-advisory-hero.png") center / cover;
}

.mentor-confirmation-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(247, 245, 239, 0.96);
  box-shadow: var(--shadow);
}

.mentor-confirmation-card p {
  color: var(--muted);
  line-height: 1.7;
}

.mentor-payout-grid,
.mentor-requirement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.mentor-payout-card,
.mentor-requirement-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.mentor-payout-card span,
.mentor-requirement-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mentor-payout-card strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.mentor-payout-card small,
.mentor-requirement-card p {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.mentor-payment-section {
  background: #fbfaf6;
}

.mentor-table-wrap {
  width: min(960px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.mentor-payment-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.mentor-payment-table th,
.mentor-payment-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.mentor-payment-table th {
  color: var(--navy);
  background: #eef4f7;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mentor-payment-table td {
  color: var(--muted);
  font-weight: 800;
}

.mentor-payment-table td:first-child {
  color: var(--navy);
}

.mentor-payment-table td:nth-child(3) strong {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.mentor-payment-table tr:last-child td {
  border-bottom: 0;
}

.mentor-payment-note {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
}

.mentor-payment-actions {
  justify-content: center;
  width: min(960px, 100%);
  margin: 20px auto 0;
}

.mentor-gate-banner {
  width: min(1120px, 100%);
  margin: 0 auto 24px;
  padding: 22px;
  border: 2px solid rgba(184, 64, 50, 0.34);
  border-radius: 8px;
  background: #fff6f3;
}

.mentor-gate-banner strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.mentor-gate-banner p {
  margin: 0;
  color: var(--ink);
  line-height: 1.65;
}

.mentor-form-section {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.mentor-form-section h3 {
  margin: 0;
  color: var(--navy);
}

.mentor-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mentor-check-option {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.mentor-check-option input {
  width: 18px;
  height: 18px;
}

.mentor-check-option span {
  color: var(--navy);
  font-weight: 900;
}

@media (max-width: 980px) {
  .mentor-hero-inner,
  .mentor-booking-layout {
    grid-template-columns: 1fr;
  }

  .mentor-comparison-grid {
    grid-template-columns: 1fr;
  }

  .mentor-stage-grid,
  .mentor-course-grid,
  .mentor-package-grid,
  .mentor-value-grid,
  .mentor-payout-grid,
  .mentor-requirement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mentor-seo-layout {
    grid-template-columns: 1fr;
  }

  .mentor-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mentor-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .mentor-stage-grid,
  .mentor-course-grid,
  .mentor-package-grid,
  .mentor-value-grid,
  .mentor-payout-grid,
  .mentor-requirement-grid,
  .mentor-booking-form .field-grid,
  .mentor-check-grid {
    grid-template-columns: 1fr;
  }

  .mentor-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mentor-stage-card,
  .mentor-course-card,
  .mentor-comparison-card {
    min-height: auto;
  }

  .mentor-risk-note,
  .mentor-payment-note {
    padding: 18px;
  }
}

/* Premium advisory visual alignment */
.mentor-hero {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(8, 18, 31, 0.94), rgba(8, 18, 31, 0.64)),
    url("assets/business-aviation-advisory-hero.png") center / cover;
}

.mentor-stage-card,
.mentor-course-card,
.mentor-package-card,
.mentor-comparison-card,
.mentor-value-card,
.mentor-payout-card,
.mentor-requirement-card,
.mentor-booking-card,
.mentor-summary-card,
.mentor-payment-section,
.mentor-risk-note,
.mentor-payment-note {
  border-color: var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mentor-payment-table {
  border-radius: 16px;
  overflow: hidden;
}

.mentor-stage-card small,
.mentor-course-card small,
.mentor-package-card small,
.mentor-payment-table td:nth-child(3) strong {
  color: var(--gold);
}

.mentor-check-option {
  border-radius: 12px;
  border-color: var(--line);
}

.mentor-check-option span {
  font-weight: 700;
}
