.pc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1.5px solid #001a53;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #001a53;
  margin-bottom: 24px;
}

.pc-hero__title {
  /* font-size: 52px; */
  font-weight: 600;
  /* line-height: 1.1; */
  color: var(--ux4g-text-neutral-primary, #171717);
  margin-bottom: 20px;
}

.pc-hero__desc {
  /* font-size: 16px; */
  /* font-weight: 600; */
  line-height: 1.7;
  color: #2661E0;
  margin-bottom: 32px;
}

.pc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  background-color: #2661E0;
  color: #FAFAFA;
  border: 2px solid #2661E0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.pc-btn-primary:hover,
.pc-btn-primary:focus-visible {
  background-color: #002b8a;
  border-color: #002b8a;
  color: #fff;
}

.pc-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  background-color: #fff;
  color: #2661E0;
  border: 2px solid #ACC9FF;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.pc-btn-outline:hover,
.pc-btn-outline:focus-visible {
  background-color: #eef1fb;
  color: #001a53;
}

/* Hero illustration */
.pc-hero__illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.pc-hero__circle {
  /* position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e7eeff 0%, #dde6ff 100%);
  z-index: 0; */
}

.pc-hero__img {
  position: relative;
  z-index: 1;
  max-height: 320px;
  width: auto;
}

/* ──────────────────────────────────────────────────────────
   Calculator Card
   ────────────────────────────────────────────────────────── */
.pc-calc-card {
  background: linear-gradient(180deg, #2661e0 0%, #00237e 100%);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 20px;
}

.pc-calc-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-align: center;
}

.pc-calc-card__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin-bottom: 28px;
}

/* Form labels inside the card */
.pc-form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

.pc-form-label .pc-required {
  color: #f87171;
  margin-left: 2px;
}

/* ── Gender selector ─────────────────────────────────────── */
.pc-gender-group {
  display: flex;
  gap: 12px;
}

.pc-gender-option {
  flex: 1;
  position: relative;
}

.pc-gender-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pc-gender-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  user-select: none;
}

.pc-gender-card:hover {
  border-color: rgba(230, 168, 30, 0.5);
}

.pc-gender-option input[type="radio"]:checked+.pc-gender-card {
  border-color: #e6a81e;
  box-shadow: 0 0 0 1px #e6a81e;
}

.pc-gender-option input[type="radio"]:focus-visible+.pc-gender-card {
  outline: 3px solid #93b1ff;
  outline-offset: 2px;
}

.pc-gender-card__icon {
  font-size: 2.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.pc-gender-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.pc-gender-card__hint {
  font-size: 11px;
  color: #737373;
  margin-top: 2px;
}

/* ── Date of birth picker ─────────────────────────────────── */
.pc-dob-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  padding: 0 14px;
  height: 52px;
}

.pc-dob-wrapper .react-datepicker-wrapper,
.pc-dob-wrapper .react-datepicker__input-container {
  flex: 1;
}

.pc-dob-wrapper input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  background: transparent;
}

/* ── Slider ───────────────────────────────────────────────── */
.pc-slider-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.pc-slider-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pc-slider-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #737373;
}

.pc-slider-card__label .pc-required {
  color: #e53e3e;
}

.pc-slider-card__input {
  width: 56px;
  height: 36px;
  border: 1.5px solid #d9d9d9;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}

.pc-slider-card__input:focus {
  border-color: #001a53;
}

/* Custom range slider */
.pc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: #e5e5e5;
  outline: none;
  cursor: pointer;
  position: relative;
}

/* Filled track — JS sets --val on the element */
.pc-range {
  background: linear-gradient(to right,
      #e47624 0%,
      #e47624 var(--track-fill, 50%),
      #e5e5e5 var(--track-fill, 50%),
      #e5e5e5 100%);
}

.pc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #e47624;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s;
}

.pc-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.pc-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #e47624;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.pc-range::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: transparent;
}

.pc-slider-card__range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.pc-slider-card__range-labels span {
  font-size: 11px;
  color: #a1a1a1;
}

/* ── Error messages ───────────────────────────────────────── */
.pc-error {
  font-size: 12px;
  color: #fca5a5;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Actions row ──────────────────────────────────────────── */
.pc-calc-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.pc-required-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.pc-required-note span {
  color: #f87171;
}

.pc-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  min-width: 149px;
  padding: 0 28px;
  background: #2661E0;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.pc-submit-btn:hover:not(:disabled) {
  opacity: 0.92;
  transform: translateY(-1px);
}

.pc-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ── Result card ──────────────────────────────────────────── */
.pc-result-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}

.pc-result-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  /* padding-bottom: 20px; */
  /* margin-bottom: 20px; */
  /* border-bottom: 1px solid #e5e5e5; */
  /* text-align: center; */
}

.pc-result-summary__label {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #737373;
  margin-bottom: 4px;
  text-transform: capitalize;
}

.pc-result-summary__value {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #171717;
}

.pc-result-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pc-result-indicator {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.pc-result-indicator__name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 0;
}

.pc-result-indicator__subhead {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #737373;
  margin-bottom: 8px;
}

.download_remedy_link_text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #FAFAFA;
}

.download_remedy_link_text:hover {
  color: #FAFAFA;
}

.download_remedy_link_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-result-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #FAFAFA;
}

.pc-result-badge--normal {
  background-color: #128937;
  /* --ux4g-color-green-600 */
}

.pc-result-badge--moderate {
  background-color: #FA8C16;
  /* --ux4g-color-orange-600 */
}

.pc-result-badge--severe {
  background-color: #DB372D;
  /* --ux4g-color-red-600 */
}

.pc-result-badge--overweight {
  background-color: #13C2C2;
}

.pc-result-badge--unavailable {
  background-color: #171717;
}

.pc-result-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px;
  background: transparent;
  color: #FAFAFA;
  border: 2px solid #2661E0;
  border-radius: 999px;
  font-size: 16px;
  background-color: #2661E0;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: background-color 0.15s;
}

.pc-result-back-btn:hover {
  background-color: #eef1fb;
  color: #2661E0;
}

/* Alert for API error */
.pc-alert {
  background: rgba(255, 200, 100, 0.15);
  border: 1px solid rgba(255, 200, 100, 0.4);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #ffe0a0;
  margin-bottom: 20px;
}

/* ──────────────────────────────────────────────────────────
   Shared section wrapper
   ────────────────────────────────────────────────────────── */
.pc-section {
  padding: 64px 0;
}

.pc-section--alt {
  background-color: #FAFAFA;
}

.pc-section__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ux4g-text-neutral-primary, #171717);
  margin-bottom: 12px;
}

.pc-section__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ux4g-text-neutral-secondary, #525252);
  margin-bottom: 48px;
}

/* ──────────────────────────────────────────────────────────
   SECTION 2 — How to Use (5 step cards)
   ────────────────────────────────────────────────────────── */
.pc-steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pc-step-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pc-step-card:hover {
  box-shadow: 0 8px 24px rgba(0, 26, 83, 0.1);
  transform: translateY(-3px);
}

.pc-step-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.pc-step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #AE5502;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pc-step-card_icon {
  width: 24px;
  height: 24px;
  color: #E8935B;
  flex-shrink: 0;
}

.pc-step-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.pc-step-card__desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: #525252;
  margin-bottom: 0;
}

/* ──────────────────────────────────────────────────────────
   SECTION 3 — Key Growth Indicators (3 columns)
   ────────────────────────────────────────────────────────── */
.pc-indicators-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pc-indicator-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}

.pc-indicator-card:hover {
  box-shadow: 0 8px 28px rgba(0, 26, 83, 0.1);
}

.pc-indicator-card__illustration {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 3.5rem;
}

.pc-indicator-card__illustration--stunted {
  background-color: #F2F5C1;
}

.pc-indicator-card__illustration--wasting {
  background-color: #FFF3CD;
}

.pc-indicator-card__illustration--underweight {
  background-color: #FCE7F3;
}

.pc-indicator-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.pc-indicator-card__metric {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #5d78d7;
  background: #eef1fb;
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 16px;
}

.pc-indicator-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #525252;
  flex: 1;
  margin-bottom: 24px;
}

.pc-indicator-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: #2661E0;
  border: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
}

/* ──────────────────────────────────────────────────────────
   SECTION 4 — How It Works (3 work steps)
   ────────────────────────────────────────────────────────── */
.pc-work-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}

/* Vertical divider between steps */
.pc-work-steps-row .pc-work-step:not(:last-child) {
  /* border-right: 1px solid #e5e5e5; */
  /* padding-right: 40px; */
}

.pc-work-step {
  /* padding: 0 40px 0 0; */
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--Border-Neutral-Default, #D9D9D9);
  border-radius: 24px;
  padding: 15px 15px;
}

.pc-work-step:not(:first-child) {
  /* padding-left: 40px; */
}

.pc-work-step__number {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: #E8935B;
  flex-shrink: 0;
  user-select: none;
  /* width: 60px; */
}

.pc-work-step__content {
  padding-top: 8px;
  flex: 1;
}

.pc-work-step__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pc-work-step__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.pc-step-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 6px;
  background: #E6EFFF;
  color: #2661E0;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pc-work-step__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #525252;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────
   SECTION 5 — WHO Standards card
   ────────────────────────────────────────────────────────── */
.pc-who-card {
  background: #FFFFFF;
  border: 1px solid var(--Border-Neutral-Default, #D9D9D9);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.pc-who-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pc-who-card__body {
  flex: 1;
}

.pc-who-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.pc-who-card__para {
  font-size: 14px;
  line-height: 1.75;
  color: #404040;
  margin-bottom: 12px;
}

.pc-who-card__para:last-of-type {
  margin-bottom: 16px;
}

.pc-who-card__quote {
  background: #DDF8D8;
  border: 1px solid var(--Border-Status-Success-Default, #80DA88);
  border-radius: 0 8px 8px 0;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #00522C;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────
   SECTION 6 — Related Videos (4 cards)
   ────────────────────────────────────────────────────────── */
.pc-videos-section {
  padding: 64px 0;
}

.pc-videos-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.pc-videos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pc-video-card {
  background: #F5F5F5;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
}

.pc-video-card:hover {
  box-shadow: 0 8px 24px rgba(0, 26, 83, 0.12);
  transform: translateY(-3px);
}

.pc-video-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e7eeff;
}

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

.pc-video-card__play {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 26, 83, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

.pc-video-card__body {
  padding: 12px 14px 14px;
}

.pc-video-card__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-video-card__duration {
  font-size: 12px;
  color: #a1a1a1;
  font-weight: 400;
}

.pc-video-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ──────────────────────────────────────────────────────────
   Responsive overrides
   ────────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .pc-hero__title {
    font-size: 42px;
  }

  .pc-section__title {
    font-size: 30px;
  }

  .pc-steps-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .pc-videos-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .pc-hero__title {
    font-size: 36px;
  }

  .pc-hero__circle {
    width: 280px;
    height: 280px;
  }

  .pc-hero__img {
    max-height: 260px;
  }

  .pc-calc-card {
    padding: 24px 20px;
  }

  .pc-result-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-result-indicators {
    grid-template-columns: repeat(3, 1fr);
  }

  .pc-steps-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-indicators-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .pc-work-steps-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pc-work-steps-row .pc-work-step:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding-right: 0;
    padding-bottom: 32px;
  }

  .pc-work-step:not(:first-child) {
    padding-left: 0;
  }

  .pc-videos-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-who-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pc-who-card__quote {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .pc-hero {
    padding: 32px 0 24px;
  }

  .pc-hero__title {
    font-size: 28px;
  }

  .pc-hero__illustration {
    min-height: 200px;
  }

  .pc-hero__circle {
    width: 200px;
    height: 200px;
  }

  .pc-hero__img {
    max-height: 190px;
  }

  .pc-section {
    padding: 48px 0;
  }

  .pc-section__title {
    font-size: 24px;
  }

  .pc-section__subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }

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

  .pc-result-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-result-indicators {
    grid-template-columns: 1fr;
  }

  .pc-videos-row {
    grid-template-columns: 1fr;
  }

  .pc-work-step__number {
    font-size: 56px;
  }

  .pc-gender-group {
    flex-direction: column;
  }

  .pc-calc-actions {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

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

  .pc-who-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .pc-hero__title {
    font-size: 24px;
  }

  .pc-videos-row {
    grid-template-columns: 1fr;
  }

  .pc-result-summary {
    grid-template-columns: 1fr 1fr;
  }
}