/* =====================================================
   BOARDING PAGE (boarding-page.css)
   ===================================================== */

/* ---- Hero overlay ---- */
#boarding-hero .crossfit-slide-bg {
  background-position: center 30%;
}

/* ---- Section backgrounds ---- */
#boarding-benefits {
  background-color: var(--background);
}
#boarding-process {
  background-color: var(--surface);
}

/* ---- Section padding ---- */
#boarding-benefits,
#boarding-process {
  padding-top: 66px;
  padding-bottom: 66px;
}

/* =====================================================
   HERO CONTENT
   ===================================================== */
.boarding-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--accent);
  border: 1px solid var(--yellow-a8);
  border-radius: 999px;
  padding: 8px 16px;
  text-transform: uppercase;
  background: var(--black-a5);
  pointer-events: auto;
  margin-bottom: 22px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex: none;
}

.boarding-hero-title {
  font-size: clamp(40px, 8vw, 72px);
  color: var(--foreground);
  line-height: 1.04;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.boarding-hero-accent {
  color: var(--accent);
}

.boarding-hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--white-a11);
  max-width: 540px;
  margin: 0 0 32px;
  font-weight: 400;
  background: none;
  padding: 0;
}

.boarding-hero-desc strong {
  color: var(--accent);
  font-weight: 400;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-fg) !important;
  background: var(--accent);
  padding: 18px 34px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid var(--accent);
  font-weight: 400;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.hero-btn-primary:hover {
  background: var(--accent-hover);
  color: var(--accent-fg) !important;
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--foreground) !important;
  background: var(--black-a5);
  border: 2px solid var(--white-a6);
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  font-weight: 400;
}

.hero-btn-secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-fg) !important;
}

/* =====================================================
   SECTION HEADINGS
   ===================================================== */
.bp-section-header {
  margin-bottom: 44px;
}

.bp-section-title {
  font-size: clamp(27px, 6vw, 40px);
  color: var(--foreground);
  margin: 0 0 16px;
}

.bp-section-title span {
  color: var(--accent);
}

.bp-section-meta {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.bp-section-bar {
  width: 48px;
  height: 4px;
  background: var(--accent);
  margin-top: 9px;
  flex: none;
  display: block;
  border-radius: 2px;
}

.bp-section-desc {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.4px;
  color: var(--white-a11);
  margin: 0;
  max-width: 540px;
  font-weight: 400;
}

/* =====================================================
   BENEFITS CARDS
   ===================================================== */
.bp-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

#boarding-benefits .bp-cards-grid {
  grid-template-columns: repeat(4, 1fr);
}

.bp-card {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--white-a1);
  border-radius: 12px;
  padding: 32px 28px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.bp-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.bp-card-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 100px;
  color: var(--white-a1);
  line-height: 1;
  pointer-events: none;
}

.bp-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
}

.bp-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-fg);
  font-size: 22px;
  flex: none;
}

.bp-card-title {
  font-size: 19px;
  color: var(--foreground);
  margin: 0;
  line-height: 1.2;
}

.bp-card-desc {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.4px;
  color: var(--white-a11);
  margin: 0;
  font-weight: 400;
}

/* =====================================================
   PROCESS STEPS
   ===================================================== */
.bp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bp-step {
  background: var(--surface);
  border: 2px solid var(--white-a1);
  border-radius: 12px;
  padding: 36px 30px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.bp-step:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.bp-step-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}

.bp-step-num {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  flex: none;
  font-weight: 400;
}

.bp-step-title {
  font-size: 22px;
  color: var(--foreground);
  margin: 0;
  line-height: 1.15;
}

.bp-step-desc {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.4px;
  color: var(--white-a11);
  margin: 0;
  font-weight: 400;
}

/* =====================================================
   CLOSING CTA
   ===================================================== */
#boarding-process {
  padding-bottom: 32px;
}

#boarding-closing {
  background-color: var(--surface);
  padding-top: 32px;
  padding-bottom: 66px;
}

.bp-closing-cta {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid var(--yellow-a6);
  background: var(--surface-sunken);
  padding: 52px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  transition: border-color 0.2s ease;
}

.bp-closing-cta:hover {
  border-color: var(--accent);
}

.bp-closing-cta-title {
  font-size: clamp(23px, 4.5vw, 30px);
  color: var(--foreground);
  margin: 0 0 14px;
  line-height: 1.1;
}

.bp-closing-cta-title span {
  color: var(--accent);
}

.bp-closing-cta-desc {
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.4px;
  color: var(--white-a10);
  margin: 0;
  font-weight: 400;
}

.bp-closing-cta .hero-cta-buttons {
  justify-content: flex-start;
}

/* ---- Active nav link on this page ---- */
.footer-nav--current {
  color: var(--accent) !important;
}

/* =====================================================
   FLOATING CTA
   ===================================================== */
.float-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: var(--z-overlay);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-fg);
  background: var(--accent);
  padding: 15px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  font-weight: 400;
}

.float-cta:hover {
  color: var(--accent-fg);
  background: var(--accent-hover);
}

html.show-cta .float-cta {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (min-width: 992px) {
  .bp-section-header {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 48px;
    align-items: center;
  }

  .bp-section-title {
    margin: 0;
  }

  .bp-section-bar {
    display: none;
  }

  .bp-section-meta {
    flex-direction: column;
    gap: 0;
    border-left: 3px solid var(--accent);
    padding-left: 64px;
  }

  .bp-section-desc {
    max-width: none;
  }
}

@media (max-width: 991px) {
  #boarding-benefits .bp-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bp-contact-panel {
    padding: 32px 28px;
  }

  .bp-closing-cta {
    padding: 36px 32px;
  }
}

@media (max-width: 767px) {
  #boarding-benefits,
  #boarding-process,
  #boarding-closing {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  #boarding-process {
    padding-bottom: 24px;
  }

  #boarding-closing {
    padding-top: 24px;
  }

  .bp-closing-cta {
    padding: 28px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .bp-closing-cta .hero-cta-buttons {
    width: 100%;
  }

  .bp-social-row {
    gap: 16px;
  }

  .bp-social-row a {
    font-size: 13px;
    gap: 7px;
  }

  .bp-social-row a i {
    font-size: 17px;
  }

  .bp-section-header {
    margin-bottom: 28px;
  }

  .bp-section-title {
    font-size: 26px;
    text-align: center;
  }

  .bp-section-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bp-section-desc {
    max-width: 100%;
  }

  #boarding-hero .crossfit-slide .container {
    min-height: 560px;
  }

  #boarding-hero .crossfit-slide-bg {
    background-position: center 22%;
  }

  .boarding-hero-desc {
    display: none;
  }

  .hero-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 13px;
    padding: 14px 22px;
    width: 100%;
    justify-content: center;
  }

  .bp-cards-grid,
  #boarding-benefits .bp-cards-grid {
    grid-template-columns: 1fr;
  }

  .bp-steps-grid {
    grid-template-columns: 1fr;
  }

  .bp-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bp-contact-panel {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .bp-contact-divider {
    margin: 24px 0 20px;
  }

  .bp-footer-bottom {
    margin-top: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .float-cta {
    font-size: 12px;
    padding: 13px 18px;
    right: 16px;
    bottom: 16px;
  }
}
