@charset "UTF-8";
/* ═══════════════════════════════════════════════════════════════
   Specialized Diploma Show — Namaa Design Language
   By Fatehi
   Colors & fonts inherit from backend via CSS custom properties
   Design tokens: --navy #172A4F, --gold #A58A50, --navy-light #1E3563
   ═══════════════════════════════════════════════════════════════ */
.diploma-show {
  background-color: var(--gray-50, #F7F9FC);
  min-height: 60vh;
}

.dpl-show-body {
  padding: 40px 0 64px;
}
@media (max-width: 575px) {
  .dpl-show-body {
    padding: 24px 0 40px;
  }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.dpl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.dpl-btn:hover, .dpl-btn:focus {
  text-decoration: none;
  outline: none;
}
.dpl-btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.dpl-btn__icon--arrow {
  transition: transform 0.25s ease;
}
.dpl-btn:hover .dpl-btn__icon--arrow {
  transform: translateX(3px);
}
.rtl .dpl-btn .dpl-btn__icon--arrow {
  transform: scaleX(-1);
}
.rtl .dpl-btn .dpl-btn__icon--arrow:hover {
  transform: scaleX(-1) translateX(3px);
}
.dpl-btn--sm {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
}
.dpl-btn--lg {
  padding: 14px 30px;
  border-radius: 14px;
  font-size: 15px;
}
.dpl-btn--gold {
  color: var(--navy, #172A4F);
  background-color: var(--gold, #A58A50);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}
.dpl-btn--gold:hover {
  background-color: var(--gold, #A58A50);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}
.dpl-btn--navy {
  color: var(--white);
  background-color: var(--navy, #172A4F);
}
.dpl-btn--navy:hover {
  color: var(--white);
  background-color: var(--navy-light, #1E3563);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(10, 22, 40, 0.22);
}
.dpl-btn--ghost {
  color: var(--white);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.dpl-btn--ghost:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.12);
}
.dpl-btn--outline {
  color: var(--navy, #172A4F);
  background-color: transparent;
  border: 1px solid var(--navy, #172A4F);
}
.dpl-btn--outline:hover {
  color: var(--white);
  background-color: var(--navy, #172A4F);
}

/* ── Hero ────────────────────────────────────────────────────── */
.dpl-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy, #172A4F) 0%, var(--navy-light, #1E3563) 100%);
  padding: 28px 0 48px;
}
.dpl-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.dpl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23, 42, 79, 0.94) 0%, rgba(30, 53, 99, 0.82) 55%, rgba(30, 53, 99, 0.55) 100%);
}
.dpl-hero__container {
  position: relative;
  z-index: 2;
}
.dpl-hero__breadcrumb .breadcrumb {
  background: transparent;
  padding-inline-start: 0;
  margin: 0;
}
.dpl-hero__breadcrumb .breadcrumb-item,
.dpl-hero__breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.dpl-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.45);
}
.dpl-hero__breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.92);
}
.dpl-hero__breadcrumb svg {
  color: rgba(255, 255, 255, 0.72);
}
.dpl-hero__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 36px 0 8px;
}
.dpl-hero__content {
  flex: 1;
  min-width: 0;
  max-width: 640px;
}
.dpl-hero__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy, #172A4F);
  background-color: var(--gold, #A58A50);
  margin-bottom: 14px;
}
.dpl-hero__title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--white);
  margin: 0 0 10px;
  font-family: var(--font-family-base);
}
.rtl .dpl-hero__title {
  font-family: var(--font-family-rtl);
}
@media (max-width: 575px) {
  .dpl-hero__title {
    font-size: 26px;
  }
}
.dpl-hero__subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gold, #A58A50);
  margin: 0 0 12px;
}
.dpl-hero__description {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 20px;
}
.dpl-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.dpl-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.dpl-hero__meta-item b {
  color: var(--gold, #A58A50);
}
.dpl-hero__meta-icon {
  color: var(--gold, #A58A50);
}
.dpl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dpl-hero__visual {
  flex-shrink: 0;
  width: 300px;
  max-width: 38%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  aspect-ratio: 4/3;
  background-color: rgba(255, 255, 255, 0.08);
}
.dpl-hero__cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.dpl-hero__visual--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dpl-hero__placeholder-icon {
  color: rgba(255, 255, 255, 0.9);
}
.dpl-hero__placeholder-letter {
  font-size: 72px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-family-base);
}
.rtl .dpl-hero__placeholder-letter {
  font-family: var(--font-family-rtl);
}
@media (max-width: 767px) {
  .dpl-hero__inner {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .dpl-hero__content {
    max-width: 100%;
  }
  .dpl-hero__visual {
    width: 100%;
    max-width: 100%;
  }
}

/* ── Section Card ────────────────────────────────────────────── */
.dpl-section {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 6px 24px rgba(10, 22, 40, 0.08);
}
@media (max-width: 575px) {
  .dpl-section {
    padding: 20px;
  }
}
.dpl-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.dpl-section__header--between {
  justify-content: space-between;
  flex-wrap: wrap;
}
.dpl-section__header > div {
  gap: 14px;
}
.dpl-section__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background-color: var(--navy, #172A4F);
  color: var(--gold, #A58A50);
}
.dpl-section__icon-svg {
  color: inherit;
}
.dpl-section__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold, #A58A50);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dpl-section__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy, #172A4F);
  margin: 0;
  font-family: var(--font-family-base);
}
.rtl .dpl-section__title {
  font-family: var(--font-family-rtl);
}
@media (max-width: 575px) {
  .dpl-section__title {
    font-size: 19px;
  }
}
.dpl-section__hint {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-color);
  margin: -6px 0 22px;
}

/* ── Overview ────────────────────────────────────────────────── */
.dpl-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-color);
}
.dpl-content p {
  margin: 0 0 14px;
}
.dpl-content p:last-child {
  margin-bottom: 0;
}
.dpl-content h1, .dpl-content h2, .dpl-content h3, .dpl-content h4, .dpl-content h5, .dpl-content h6 {
  color: var(--navy, #172A4F);
  margin: 18px 0 10px;
}
.dpl-content img {
  max-width: 100%;
  border-radius: 14px;
}
.dpl-content ul, .dpl-content ol {
  padding-inline-start: 22px;
  margin: 0 0 14px;
}
.dpl-content a {
  color: var(--navy, #172A4F);
  text-decoration: underline;
}

/* ── Skills / Fields of Study ────────────────────────────────── */
.dpl-skills__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dpl-skill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy, #172A4F);
  background-color: var(--gray-100, #F4F6FA);
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.dpl-skill__check {
  color: var(--gold, #A58A50);
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.dpl-skill:hover {
  color: var(--white);
  background-color: var(--navy, #172A4F);
}
.dpl-skill:hover .dpl-skill__check {
  color: var(--gold, #A58A50);
}

/* ── Stages ──────────────────────────────────────────────────── */
.dpl-stages__compare-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold, #A58A50);
  text-decoration: none;
  transition: all 0.25s ease;
}
.dpl-stages__compare-link svg {
  color: inherit;
}
.dpl-stages__compare-link:hover {
  color: var(--navy, #172A4F);
  text-decoration: none;
}

.namaa-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .namaa-stage-grid {
    grid-template-columns: 1fr;
  }
}

.namaa-stage-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: 24px;
  background-color: var(--card, var(--white));
  border: 1px solid var(--border);
  border-top: 4px solid var(--namaa-stage-accent, var(--gold, #A58A50));
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-family: var(--font-family-base);
}
.rtl .namaa-stage-card {
  font-family: var(--font-family-rtl);
}
.namaa-stage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(10, 22, 40, 0.16);
}
.namaa-stage-card:focus-visible {
  outline: 3px solid var(--gold, #A58A50);
  outline-offset: 3px;
}

.namaa-stage-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.namaa-stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--primary, #0170FF) 10%, var(--white));
  color: var(--primary, #0170FF);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}
.namaa-stage-badge svg {
  color: var(--primary, #0170FF);
}

.namaa-stage-name {
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary, #0170FF);
}

.namaa-stage-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--navy, #172A4F);
  margin: 0 0 16px;
  font-family: var(--font-family-base);
}
.rtl .namaa-stage-title {
  font-family: var(--font-family-rtl);
}
@media (max-width: 575px) {
  .namaa-stage-title {
    font-size: 20px;
  }
}

.namaa-stage-fee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background-color: var(--surface-cool, var(--gray-100));
  border: 1px dashed var(--border);
}
.namaa-stage-fee__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy, #172A4F);
}
.namaa-stage-fee__label svg {
  color: var(--gold, #A58A50);
}
.namaa-stage-fee__value {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy, #172A4F);
  white-space: nowrap;
}
.namaa-stage-fee__old-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-text, var(--gray-500));
  text-decoration: line-through;
}
.namaa-stage-fee__free {
  font-size: 16px;
  color: #43d477;
}

.namaa-stage-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.namaa-stage-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 12px 8px;
  border-radius: 14px;
  background-color: var(--surface-cool, var(--gray-100));
  text-align: center;
}
.namaa-stage-fact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--gold, #A58A50) 16%, var(--white));
  color: var(--gold, #A58A50);
}
.namaa-stage-fact__icon svg {
  width: 15px;
  height: 15px;
}
.namaa-stage-fact__label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--muted-text, var(--gray-500));
}
.namaa-stage-fact__value {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--navy, #172A4F);
}

.namaa-stage-requirements {
  margin-bottom: 20px;
}
.namaa-stage-requirements__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy, #172A4F);
  margin-bottom: 10px;
}
.namaa-stage-requirements__title svg {
  color: var(--gold, #A58A50);
}
.namaa-stage-requirements__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.namaa-stage-requirements__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-color);
}
.namaa-stage-requirements__check {
  color: var(--gold, #A58A50);
  flex-shrink: 0;
  margin-top: 2px;
}

.namaa-stage-footer {
  margin-top: auto;
  padding-top: 20px;
}

.namaa-stage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy, #172A4F) 0%, var(--navy-light, #1E3563) 100%);
  box-shadow: 0 8px 20px rgba(10, 22, 40, 0.18);
  cursor: pointer;
  font-family: var(--font-family-base);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.rtl .namaa-stage-btn {
  font-family: var(--font-family-rtl);
}
.namaa-stage-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(10, 22, 40, 0.26);
}
.namaa-stage-btn:focus-visible {
  outline: 3px solid var(--gold, #A58A50);
  outline-offset: 3px;
}
.namaa-stage-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
.namaa-stage-btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .namaa-stage-card,
  .namaa-stage-btn {
    transition: none;
  }
  .namaa-stage-card:hover,
  .namaa-stage-btn:hover {
    transform: none;
  }
}
/* ── Stage Programs Modal ────────────────────────────────────── */
.dpl-stage-modal .modal-content {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(10, 22, 40, 0.16);
}
.dpl-stage-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--navy, #172A4F) 0%, var(--navy-light, #1E3563) 100%);
  border-bottom: 0;
}
.dpl-stage-modal__title-block {
  min-width: 0;
}
.dpl-stage-modal__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-family-base);
}
.rtl .dpl-stage-modal__title {
  font-family: var(--font-family-rtl);
}
.dpl-stage-modal .modal-header.dpl-stage-modal__header .close {
  opacity: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-shadow: none;
  transition: all 0.25s ease;
}
.dpl-stage-modal .modal-header.dpl-stage-modal__header .close svg {
  color: var(--white);
}
.dpl-stage-modal .modal-header.dpl-stage-modal__header .close:hover {
  opacity: 1;
  color: var(--navy, #172A4F);
  background-color: var(--gold, #A58A50);
  border-color: var(--gold, #A58A50);
}
.dpl-stage-modal .modal-header.dpl-stage-modal__header .close:hover svg {
  color: var(--navy, #172A4F);
}
.dpl-stage-modal__body {
  padding: 24px;
  max-height: 62vh;
  overflow-y: auto;
}
.dpl-stage-modal__hint {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0 0 20px;
}
.dpl-stage-modal__details {
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 14px;
  background-color: var(--surface-cool, var(--gray-100));
  border: 1px solid var(--border);
}
.dpl-stage-modal__details-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy, #172A4F);
  margin-bottom: 10px;
}
.dpl-stage-modal__details-title svg {
  color: var(--gold, #A58A50);
}
.dpl-stage-modal__details-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0 0 12px;
}
.dpl-stage-modal__details-desc p {
  margin: 0 0 10px;
}
.dpl-stage-modal__details-desc p:last-child {
  margin-bottom: 0;
}
.dpl-stage-modal__details-desc ul,
.dpl-stage-modal__details-desc ol {
  margin: 0 0 10px;
  padding-inline-start: 20px;
}
.dpl-stage-modal__details-desc ul li,
.dpl-stage-modal__details-desc ol li {
  margin-bottom: 4px;
}
.dpl-stage-modal__details-desc ul li:last-child,
.dpl-stage-modal__details-desc ol li:last-child {
  margin-bottom: 0;
}
.dpl-stage-modal__details-desc strong,
.dpl-stage-modal__details-desc b {
  color: var(--navy, #172A4F);
}
.dpl-stage-modal__details-desc a {
  color: var(--primary, #0170FF);
  text-decoration: underline;
}
.dpl-stage-modal__details-desc a:hover {
  color: var(--navy, #172A4F);
}
.dpl-stage-modal__details-desc h4,
.dpl-stage-modal__details-desc h5,
.dpl-stage-modal__details-desc h6 {
  margin: 0 0 8px;
  color: var(--navy, #172A4F);
}
.dpl-stage-modal__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dpl-stage-modal__fact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy, #172A4F);
  background-color: var(--white);
}
.dpl-stage-modal__fact svg {
  color: var(--gold, #A58A50);
}
.dpl-stage-modal__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.dpl-stage-modal__requirements {
  background-color: var(--gray-100, #F4F6FA);
  border-radius: 14px;
  padding: 16px;
  margin-top: 8px;
}
.dpl-stage-modal__requirements-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy, #172A4F);
  margin-bottom: 10px;
}
.dpl-stage-modal__requirements-title svg {
  color: var(--gold, #A58A50);
}
.dpl-stage-modal__requirements-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dpl-stage-modal__requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-color);
}
.dpl-stage-modal__requirements-check {
  color: var(--gold, #A58A50);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Program Card ────────────────────────────────────────────── */
.dpl-program {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background-color: var(--white);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.dpl-program:hover {
  border-color: color-mix(in srgb, var(--navy, #172A4F) 30%, var(--white));
  box-shadow: 0 6px 24px rgba(10, 22, 40, 0.08);
}
.dpl-program__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
.dpl-program--bundle .dpl-program__icon {
  background-color: var(--navy, #172A4F);
  color: var(--gold, #A58A50);
}
.dpl-program__icon-svg {
  color: inherit;
}
.dpl-program__body {
  flex: 1;
  min-width: 0;
}
.dpl-program__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy, #172A4F);
  margin: 0 0 4px;
  font-family: var(--font-family-base);
}
.rtl .dpl-program__title {
  font-family: var(--font-family-rtl);
}
.dpl-program__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0 0 10px;
}
.dpl-program__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dpl-program__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
  background-color: var(--gray-100, #F4F6FA);
}
.dpl-program__chip svg {
  color: inherit;
}
.dpl-program__chip--gold {
  color: var(--navy, #172A4F);
  background-color: color-mix(in srgb, var(--gold, #A58A50) 22%, var(--white));
}
.dpl-program__chip--price {
  color: var(--white);
  background-color: var(--navy, #172A4F);
}
.dpl-program__actions {
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .dpl-program {
    flex-direction: column;
    align-items: stretch;
  }
  .dpl-program__actions .dpl-btn {
    width: 100%;
  }
}

/* ── Comparison ──────────────────────────────────────────────── */
.dpl-compare__table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: 640px;
}
.dpl-compare__table thead th {
  background-color: var(--navy, #172A4F);
  color: var(--white);
  padding: 16px;
  text-align: center;
  vertical-align: middle;
  border: 0;
}
.dpl-compare__table thead th:first-child {
  border-start-start-radius: 14px;
}
.dpl-compare__table thead th:last-child {
  border-start-end-radius: 14px;
}
.dpl-compare__table tbody td {
  padding: 14px 16px;
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
  color: var(--text-color);
  border: 0;
  border-bottom: 1px solid var(--border-color);
}
.dpl-compare__table tbody tr:last-child td {
  border-bottom: 0;
}
.dpl-compare__table tbody tr:nth-child(even) td:not(.dpl-compare__sticky-col) {
  background-color: var(--gray-50, #F7F9FC);
}
.dpl-compare__sticky-col {
  position: sticky;
  inset-inline-start: 0;
  z-index: 1;
  min-width: 150px;
  text-align: start !important;
  font-weight: 700;
  color: var(--navy, #172A4F);
}
.dpl-compare__label {
  background-color: var(--white);
}
thead .dpl-compare__sticky-col {
  background-color: var(--navy, #172A4F);
}
tbody tr:nth-child(even) .dpl-compare__sticky-col {
  background-color: var(--white);
}
.dpl-compare__stage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy, #172A4F);
  background-color: var(--gold, #A58A50);
  margin-inline-end: 8px;
  vertical-align: middle;
}
.dpl-compare__stage-title {
  font-size: 14px;
  font-weight: 700;
}
.dpl-compare__certified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold, #A58A50);
}
.dpl-compare__certified svg {
  color: inherit;
}
.dpl-compare__no-cert {
  font-size: 13px;
  color: var(--text-color);
}

/* ── CTA ─────────────────────────────────────────────────────── */
.dpl-cta {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 56px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy, #172A4F) 0%, var(--navy-light, #1E3563) 100%);
  box-shadow: 0 18px 44px rgba(10, 22, 40, 0.16);
}
.dpl-cta__deco {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.dpl-cta__deco--one {
  width: 240px;
  height: 240px;
  top: -80px;
  inset-inline-end: -60px;
}
.dpl-cta__deco--two {
  width: 160px;
  height: 160px;
  bottom: -60px;
  inset-inline-start: -40px;
}
.dpl-cta__deco--three {
  width: 90px;
  height: 90px;
  top: 30px;
  inset-inline-start: 14%;
  background-color: rgba(165, 138, 80, 0.18);
}
.dpl-cta__inner {
  position: relative;
  z-index: 2;
}
.dpl-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--navy, #172A4F);
  background-color: var(--gold, #A58A50);
  margin-bottom: 16px;
}
.dpl-cta__title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--white);
  margin: 0 0 10px;
  font-family: var(--font-family-base);
}
.rtl .dpl-cta__title {
  font-family: var(--font-family-rtl);
}
@media (max-width: 575px) {
  .dpl-cta__title {
    font-size: 24px;
  }
}
.dpl-cta__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto 28px;
}
.dpl-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
