/* =====================================================
   Nevestate — Program Page (Phase 3A)
   Base layout & section styles. Polish/JS — Phase 3B.
   Design tokens (border-radius:0, gold #A17E3F, weight 500,
   no uppercase) follow theme dist/css/style.css conventions.
   ===================================================== */

:root {
  --prog-gold: #A17E3F;
  --prog-gold-dark: #8a6a31;
  --prog-text: #1a1a1a;
  --prog-muted: #666;
  --prog-line: #e5e5e5;
  --prog-bg: #fafafa;
  --prog-dark: #14181d;
  --prog-max: 1280px;
}

/* ---- Container ---- */
.program-page {
  color: var(--prog-text);
  font-weight: 500;
}
.program-page section {
  border-radius: 0;
}
.program-page .program-container {
  max-width: var(--prog-max);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

/* ---- Breadcrumbs / updated pill (handled by theme breadcrumbs.css; pill local) ---- */
.program-breadcrumbs {
  padding: 16px 0 0;
}
.program-breadcrumbs__pill {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  background: var(--prog-bg);
  color: var(--prog-muted);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--prog-line);
  border-radius: 0;
}

/* ============= HERO ============= */
.program-hero {
  position: relative;
  background: #0d1015;
  color: #fff;
  overflow: hidden;
  padding: 80px 0 60px;
}
.program-hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.program-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.program-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.25) 100%);
  z-index: 1;
}
.program-hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 440px);
  gap: 48px;
  align-items: start;
}
.program-hero__left { min-width: 0; }
.program-hero__title {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 16px 0 24px;
  font-weight: 500;
  color: #fff;
}
.program-hero__taglines {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.program-hero__tagline {
  flex: 1 1 240px;
  min-width: 220px;
  padding: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
}
.program-hero__tagline-icon {
  width: 36px; height: 36px;
  margin-bottom: 12px;
  display: block;
}
.program-hero__tagline-title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 6px;
}
.program-hero__tagline-desc {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
  margin: 0;
}

/* sticky form card */
.program-hero__form-card {
  background: #fff;
  color: var(--prog-text);
  padding: 28px;
  border: 1px solid var(--prog-line);
  position: sticky;
  top: 80px;
}
.program-hero__form-title {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 18px;
  line-height: 1.2;
}
.program-hero-form__field {
  margin-bottom: 14px;
  position: relative;
}
.program-hero-form__field input,
.program-hero-form__field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--prog-line);
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: var(--prog-text);
  outline: none;
  box-sizing: border-box;
  border-radius: 0;
}
.program-hero-form__field input:focus,
.program-hero-form__field textarea:focus {
  border-color: var(--prog-gold);
}
.program-hero-form__check {
  font-size: 12px;
  color: var(--prog-muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 14px 0;
}
.program-hero-form__check input { margin-top: 3px; }
.program-hero-form__submit {
  width: 100%;
  background: var(--prog-gold);
  color: #fff;
  border: 0;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0;
  font-family: inherit;
  transition: background .2s ease;
}
.program-hero-form__submit:hover { background: var(--prog-gold-dark); }

/* ============= KPI ============= */
.program-kpi {
  background: #fff;
  border-bottom: 1px solid var(--prog-line);
  padding: 32px 0;
}
.program-kpi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.program-kpi__cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0 16px;
  border-right: 1px solid var(--prog-line);
}
.program-kpi__cell:last-child { border-right: 0; }
.program-kpi__icon {
  width: 32px; height: 32px;
}
.program-kpi__value {
  font-size: 28px;
  font-weight: 500;
  color: var(--prog-text);
  line-height: 1;
}
.program-kpi__label {
  font-size: 13px;
  color: var(--prog-muted);
}

/* ============= ANCHOR TABS ============= */
.program-tabs {
  position: sticky;
  top: var(--prog-header-h, 0px);
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--prog-line);
}
.program-tabs__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 16px 0;
}
.program-tabs__inner::-webkit-scrollbar { display: none; }
.program-tabs__link {
  white-space: nowrap;
  color: var(--prog-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.program-tabs__link:hover,
.program-tabs__link.is-active {
  color: var(--prog-gold);
  border-bottom-color: var(--prog-gold);
}

/* ============= shared section pattern ============= */
.program-section {
  padding: 80px 0;
}
.program-section--alt {
  background: var(--prog-bg);
}
.program-section__label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--prog-gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.program-section__heading {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--prog-text);
}
.program-section__sub {
  font-size: 16px;
  color: var(--prog-muted);
  line-height: 1.5;
  max-width: 760px;
}

/* ============= ABOUT ============= */
.program-about__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.program-about__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.program-about__paragraph {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px;
  color: var(--prog-text);
}
.program-about__perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
  width: 100%;
  align-items: stretch;
}
.program-about__perk {
  padding: 20px;
  border: 1px solid var(--prog-line);
  background: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 8px;
  align-content: start;
}
.program-about__perk-icon {
  width: 32px; height: 32px;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}
.program-about__perk-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.program-about__perk-sub {
  font-size: 12px;
  color: var(--prog-muted);
  margin: 0;
  grid-column: 1 / -1;
  grid-row: 2;
}
.program-about__cta {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 28px;
  background: var(--prog-text);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  cursor: pointer;
  border: 0;
  font-family: inherit;
}
.program-about__cta:hover { background: var(--prog-gold); }

.program-about__expert-card {
  border: 1px solid var(--prog-line);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.program-about__expert-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--prog-dark);
  overflow: hidden;
}
.program-about__expert-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.program-about__expert-media--placeholder {
  background: var(--prog-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}
.program-about__expert-placeholder-icon {
  color: var(--prog-line);
}
.program-about__expert-placeholder-text {
  color: var(--prog-muted);
  font-size: 13px;
  line-height: 1.4;
}
.program-about__expert-name--placeholder,
.program-about__expert-role--placeholder {
  color: var(--prog-muted);
  font-style: italic;
}
.program-about__expert-info {
  padding: 20px 24px;
}
.program-about__expert-name {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--prog-text);
}
.program-about__expert-role {
  font-size: 14px;
  color: var(--prog-muted);
  margin: 0;
}
.program-about__video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: var(--prog-gold);
  color: #fff;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============= INVESTMENT ============= */
.program-investment__warning {
  background: var(--prog-dark);
  color: #fff;
  padding: 20px 24px;
  margin: 24px 0 40px;
  font-size: 14px;
  line-height: 1.5;
  border-left: 3px solid var(--prog-gold);
}
.program-investment__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch;
}
.program-investment__option {
  border: 1px solid var(--prog-line);
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.program-investment__option-label {
  font-size: 12px;
  color: var(--prog-gold);
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.program-investment__option-label--invert {
  color: var(--prog-gold);
}
.program-investment__option-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 8px;
}
.program-investment__option-amount {
  font-size: 24px;
  color: var(--prog-gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.program-investment__bullets {
  margin: 0; padding: 0 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--prog-text);
}
.program-investment__bullets li { margin-bottom: 4px; }

.program-investment__expenses-card {
  padding: 28px 26px;
  background: linear-gradient(150deg, #14181d 0%, #1d2128 45%, #2d2415 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.program-investment__expenses-card::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(161,126,63,.18) 0%, transparent 70%);
  pointer-events: none;
}
.program-investment__expenses-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 16px;
  color: #fff;
}
.program-investment__expenses-list {
  list-style: none; margin: 0; padding: 0;
  position: relative;
  z-index: 1;
}
.program-investment__expenses-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
  line-height: 1.4;
}
.program-investment__expenses-row:last-child { border-bottom: 0; }
.program-investment__expenses-name {
  color: rgba(255,255,255,.75);
  flex: 1;
}
.program-investment__expenses-value {
  color: var(--prog-gold);
  font-weight: 500;
  white-space: nowrap;
}

/* ============= BENEFITS ============= */
.program-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.program-benefits__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--prog-dark);
  color: #fff;
  min-height: 320px;
}
.program-benefits__card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.program-benefits__card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,29,.15) 0%, rgba(20,24,29,.55) 50%, rgba(20,24,29,.92) 100%);
}
.program-benefits__card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
}
.program-benefits__card-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 6px;
  color: #fff;
}
.program-benefits__card-desc {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  margin: 0;
}

/* ============= CTA DISCUSS ============= */
.program-cta-discuss {
  background: var(--prog-bg);
}
.program-cta-discuss__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.program-cta-discuss__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  margin: 12px 0 16px;
  line-height: 1.15;
}
.program-cta-discuss__text {
  font-size: 16px;
  color: var(--prog-muted);
  margin: 0 0 24px;
  line-height: 1.5;
}
.program-cta-discuss__btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--prog-gold);
  color: #fff;
  border: 0;
  text-decoration: none;
  font-weight: 500;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
}
.program-cta-discuss__btn:hover { background: var(--prog-gold-dark); }
.program-cta-discuss__photo img {
  width: 100%;
  display: block;
}

/* ============= AUDIENCE ============= */
.program-audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.program-audience__card {
  background: #fff;
  padding: 28px;
  border: 1px solid var(--prog-line);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 14px;
  align-content: start;
}
.program-audience__card-icon {
  width: 40px; height: 40px;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}
.program-audience__card-cat {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.program-audience__card ul {
  margin: 0; padding: 0;
  list-style: none;
  grid-column: 1 / -1;
  grid-row: 2;
}
.program-audience__card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--prog-text);
}
.program-audience__card li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--prog-gold);
}

/* ============= DOCUMENTS ============= */
.program-documents__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.program-documents {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.program-documents::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../../assets/img/consultation/consultation-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.program-documents__card {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--prog-line);
  position: relative;
  z-index: 1;
}
.program-documents__card-label {
  font-size: 12px;
  color: var(--prog-gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.program-documents__card-heading {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 20px;
  line-height: 1.2;
}
.program-documents__check {
  list-style: none;
  margin: 0; padding: 0;
}
.program-documents__check li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.program-documents__check li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 14px; height: 14px;
  background: var(--prog-gold);
  border-radius: 50%;
}
.program-documents__cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: var(--prog-gold);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.program-documents__guide-icons {
  display: flex;
  gap: 12px;
  margin: 16px 0;
}
.program-documents__guide-icon {
  width: 32px; height: 32px;
  background: var(--prog-bg);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--prog-gold);
}
.program-documents__guide-cover {
  margin: 16px 0;
}
.program-documents__guide-cover img {
  max-width: 200px;
  display: block;
}

/* ============= PROCESS ============= */
.program-process__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.program-process__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--prog-line);
}
.program-process__item:last-child { border-bottom: 0; }
.program-process__num {
  width: 56px; height: 56px;
  background: var(--prog-gold);
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  display: flex;
  align-items: center; justify-content: center;
}
.program-process__title {
  font-size: 18px;
  font-weight: 500;
  margin: 8px 0 6px;
}
.program-process__desc {
  margin: 0;
  font-size: 14px;
  color: var(--prog-muted);
  line-height: 1.5;
}

/* ============= VISAFREE ============= */
.program-visafree__count {
  font-size: clamp(60px, 8vw, 120px);
  color: var(--prog-gold);
  font-weight: 500;
  line-height: 1;
  margin: 24px 0;
}
.program-visafree__map-placeholder {
  height: 240px;
  background: var(--prog-bg);
  border: 1px dashed var(--prog-line);
  display: flex;
  align-items: center; justify-content: center;
  color: var(--prog-muted);
  font-size: 13px;
  margin-bottom: 32px;
}
.program-visafree__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.program-visafree__chip {
  padding: 6px 14px;
  border: 1px solid var(--prog-line);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}

/* ============= FAQ ============= */
.program-faq__list {
  margin-top: 32px;
}
.program-faq__item {
  border-bottom: 1px solid var(--prog-line);
  padding: 18px 0;
}
.program-faq__item summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.program-faq__item summary::-webkit-details-marker { display: none; }
.program-faq__item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--prog-gold);
  font-weight: 400;
}
.program-faq__item[open] summary::after { content: '−'; }
.program-faq__answer {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--prog-text);
}
.program-faq__expert {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--prog-line);
}
.program-faq__expert img {
  width: 40px; height: 40px;
  object-fit: cover;
}
.program-faq__expert-name {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}
.program-faq__expert-role {
  font-size: 12px;
  color: var(--prog-muted);
  margin: 0;
}
.program-faq__footer {
  text-align: center;
  margin-top: 32px;
}
.program-faq__cta {
  display: inline-block;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--prog-gold);
  color: var(--prog-gold);
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}
.program-faq__cta:hover {
  background: var(--prog-gold);
  color: #fff;
}

/* ============= FINAL CTA ============= */
.program-final-cta {
  position: relative;
  background: var(--prog-dark);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.program-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../../assets/img/consultation/consultation-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .35;
  z-index: -2;
}
.program-final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,24,29,.85) 0%, rgba(20,24,29,.55) 100%);
  z-index: -1;
}
.program-final-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.program-final-cta__heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 16px;
}
.program-final-cta__text {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 16px;
}
.program-final-cta__rating {
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.program-final-cta__rating strong {
  color: var(--prog-gold);
  font-weight: 500;
}
.program-final-cta__form {
  background: #fff;
  color: var(--prog-text);
  padding: 32px;
  border: 1px solid rgba(255,255,255,.1);
}

/* ============= REVIEWS / LICENSES / SERVICES (lean) ============= */
.program-reviews,
.program-licenses,
.program-services {
  background: #fff;
}
.program-reviews__placeholder,
.program-licenses__placeholder {
  padding: 40px;
  background: var(--prog-bg);
  border: 1px dashed var(--prog-line);
  text-align: center;
  color: var(--prog-muted);
  font-size: 14px;
}

/* ============= TEAM (re-uses country-agent-card already in theme) ============= */
.program-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

/* ============= BLOG ============= */
.program-blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.program-blog__card {
  background: #fff;
  border: 1px solid var(--prog-line);
  display: flex;
  flex-direction: column;
}
.program-blog__card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.program-blog__card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.program-blog__card-body {
  padding: 18px;
}
.program-blog__card-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.3;
}
.program-blog__card-title a {
  color: inherit;
  text-decoration: none;
}
.program-blog__card-excerpt {
  font-size: 13px;
  color: var(--prog-muted);
  margin: 0;
  line-height: 1.4;
}

/* ============= VIDEOS ============= */
.program-videos__player {
  position: relative;
  max-width: 960px;
  margin: 24px auto 0;
  aspect-ratio: 16/9;
  background: #000;
}
.program-videos__player iframe {
  width: 100%; height: 100%;
  border: 0;
}

/* ============= COUNTRY CTA ============= */
.program-country-cta {
  background: var(--prog-gold);
  color: #fff;
}
.program-country-cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
}
.program-country-cta__heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  margin: 0 0 16px;
  color: #fff;
  line-height: 1.15;
}
.program-country-cta__sub {
  color: rgba(255,255,255,.9);
  font-size: 16px;
  margin: 0 0 24px;
  line-height: 1.5;
}
.program-country-cta__btn {
  display: inline-block;
  padding: 14px 28px;
  background: #fff;
  color: var(--prog-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
.program-country-cta__btn:hover { background: var(--prog-dark); color: #fff; }
.program-country-cta__img img {
  width: 100%;
  display: block;
}

/* ============= CASES ============= */
.program-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.program-cases__card {
  background: #fff;
  border: 1px solid var(--prog-line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.program-cases__tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--prog-bg);
  color: var(--prog-gold);
  font-size: 11px;
  font-weight: 500;
  align-self: flex-start;
}
.program-cases__title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  line-height: 1.25;
}
.program-cases__desc {
  font-size: 14px;
  color: var(--prog-muted);
  margin: 0;
  line-height: 1.5;
}
.program-cases__client {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--prog-line);
  font-size: 13px;
}
.program-cases__client-name {
  font-weight: 500;
  margin: 0;
}
.program-cases__client-role {
  color: var(--prog-muted);
  margin: 0;
  font-size: 12px;
}
.program-cases__link {
  margin-top: 8px;
  color: var(--prog-gold);
  text-decoration: none;
  font-size: 13px;
}

/* ============= STICKY BANNER ============= */
.program-sticky-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--prog-dark);
  color: #fff;
  padding: 14px 20px;
  display: none; /* show logic = Phase 3B */
  align-items: center;
  gap: 16px;
}
.program-sticky-banner.is-visible { display: flex; }
.program-sticky-banner__icon {
  flex: 0 0 auto;
  font-size: 20px;
  color: var(--prog-gold);
}
.program-sticky-banner__text {
  flex: 1 1 auto;
  font-size: 14px;
  margin: 0;
}
.program-sticky-banner__btn {
  background: var(--prog-gold);
  color: #fff;
  padding: 8px 18px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}
.program-sticky-banner__close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .program-page .program-container { padding: 0 28px; }
  .program-hero__inner { grid-template-columns: 1fr; }
  .program-hero__form-card { position: relative; top: auto; }
  .program-kpi__grid { grid-template-columns: repeat(2, 1fr); }
  .program-kpi__cell:nth-child(2) { border-right: 0; }
  .program-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .program-team__grid { grid-template-columns: repeat(2, 1fr); }
  .program-blog__grid { grid-template-columns: repeat(2, 1fr); }
  .program-cases__grid { grid-template-columns: repeat(2, 1fr); }
  .program-about__inner,
  .program-cta-discuss__inner,
  .program-final-cta__inner,
  .program-country-cta__inner { grid-template-columns: 1fr; }
  .program-investment__row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .program-page .program-container { padding: 0 20px; }
  .program-section { padding: 56px 0; }
  .program-audience__grid,
  .program-documents__grid { grid-template-columns: 1fr; }
  .program-about__perks { grid-template-columns: 1fr; }
  .program-tabs__inner { justify-content: flex-start; gap: 20px; }
}
@media (max-width: 480px) {
  .program-kpi__grid { grid-template-columns: 1fr 1fr; }
  .program-benefits__grid,
  .program-team__grid,
  .program-blog__grid,
  .program-cases__grid { grid-template-columns: 1fr; }
  .program-hero { padding: 56px 0 32px; }
  .program-hero__form-card { padding: 20px; }
  .program-sticky-banner { flex-wrap: wrap; }
  .program-sticky-banner__text { font-size: 13px; }
}
