/* =========================================
   PROGRAMS — topic-driven premium listing
========================================= */

.pg-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-700);
}

.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.pg-btn--primary {
  background: var(--primary-700);
  color: #ffffff;
  border: 1.5px solid var(--primary-700);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.2);
}

.pg-btn--primary:hover {
  background: var(--primary-800);
  border-color: var(--primary-800);
  color: #ffffff;
  transform: translateY(-1px);
}

.pg-btn--secondary {
  background: transparent;
  color: var(--primary-800);
  border: 1.5px solid rgba(15, 118, 110, 0.28);
}

.pg-btn--secondary:hover {
  background: rgba(15, 118, 110, 0.06);
  border-color: var(--primary-700);
}

.pg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pg-intro {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.pg-intro h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--primary-800);
}

.pg-intro p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.pg-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-700);
}

.pg-text-link svg,
.pg-text-link i {
  width: 16px;
  height: 16px;
}

.pg-text-link:hover {
  color: var(--primary-800);
}

/* Hero */
.pg-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 5vw, 64px) 0 clamp(48px, 6vw, 72px);
  background:
    radial-gradient(ellipse 50% 55% at 15% 20%, rgba(204, 251, 241, 0.65), transparent 60%),
    radial-gradient(ellipse 45% 50% at 90% 10%, rgba(167, 243, 208, 0.35), transparent 55%),
    #ffffff;
  text-align: center;
}

.pg-hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.45;
}

.pg-blob--1 {
  width: 220px;
  height: 220px;
  left: 8%;
  top: 20%;
  background: rgba(45, 212, 191, 0.25);
}

.pg-blob--2 {
  width: 160px;
  height: 160px;
  right: 12%;
  top: 30%;
  background: rgba(15, 118, 110, 0.12);
}

.pg-blob--3 {
  width: 120px;
  height: 120px;
  left: 45%;
  bottom: 12%;
  background: rgba(153, 246, 228, 0.4);
}

.pg-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.pg-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5.4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--primary-800);
}

.pg-hero p {
  margin: 0 auto 28px;
  max-width: 52ch;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--text-secondary);
}

.pg-hero .pg-actions {
  justify-content: center;
  margin-bottom: 28px;
}

.pg-hero-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.pg-hero-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary-700);
}

.pg-hero-icons svg,
.pg-hero-icons i {
  width: 22px;
  height: 22px;
}

/* Goals */
.pg-goals {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #f8fafc;
}

.pg-goals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pg-goal-card {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pg-goal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.25);
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.1);
}

.pg-goal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary-700);
}

.pg-goal-icon svg,
.pg-goal-icon i {
  width: 22px;
  height: 22px;
}

.pg-goal-card h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Categories */
.pg-categories {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #ffffff;
}

.pg-category-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.pg-category {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.pg-category summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.pg-category summary::-webkit-details-marker {
  display: none;
}

.pg-category-main {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.pg-category-tone {
  width: 10px;
  height: 48px;
  border-radius: 999px;
  flex-shrink: 0;
}

.pg-category-tone--1 { background: linear-gradient(180deg, #0f766e, #5eead4); }
.pg-category-tone--2 { background: linear-gradient(180deg, #0d9488, #99f6e4); }
.pg-category-tone--3 { background: linear-gradient(180deg, #115e59, #2dd4bf); }

.pg-category-main h3 {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.pg-category-main p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.pg-category-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-light);
}

.pg-category-meta strong {
  color: var(--primary-700);
  font-weight: 700;
}

.pg-category-meta svg,
.pg-category-meta i {
  width: 18px;
  height: 18px;
  color: var(--primary-700);
  transition: transform 0.25s ease;
}

.pg-category[open] .pg-category-meta svg,
.pg-category[open] .pg-category-meta i {
  transform: rotate(180deg);
}

.pg-category-programs {
  display: grid;
  gap: 12px;
  padding: 0 24px 22px;
}

.pg-mini-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(15, 118, 110, 0.08);
}

.pg-mini-card h4 {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.pg-mini-card p {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.pg-mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 650;
  color: var(--primary-700);
}

.pg-empty-note {
  margin: 0;
  padding: 8px 4px 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
}

/* Featured */
.pg-featured {
  padding: clamp(48px, 6vw, 80px) 0;
  background:
    radial-gradient(ellipse 40% 50% at 0% 0%, rgba(204, 251, 241, 0.45), transparent 60%),
    #f8fafc;
}

.pg-featured-main {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.1);
  box-shadow: var(--shadow-md);
}

.pg-featured-media {
  min-height: 320px;
  background: linear-gradient(145deg, #ccfbf1, #99f6e4);
}

.pg-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pg-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 40px);
}

.pg-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary-800);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
}

.pg-featured-body h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  color: var(--primary-800);
}

.pg-featured-body > p {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.pg-featured-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pg-featured-facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 650;
  color: var(--text-primary);
}

.pg-featured-facts svg,
.pg-featured-facts i {
  width: 16px;
  height: 16px;
  color: var(--primary-700);
}

.pg-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pg-featured-card {
  padding: 24px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pg-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pg-featured-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary-700);
}

.pg-featured-card-icon svg,
.pg-featured-card-icon i {
  width: 22px;
  height: 22px;
}

.pg-featured-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.pg-featured-card p {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Journey */
.pg-journey {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #ffffff;
}

.pg-journey-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.pg-journey-steps li {
  position: relative;
  padding: 24px 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15, 118, 110, 0.08);
}

.pg-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--primary-700);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
}

.pg-journey-steps h3 {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.pg-journey-steps p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Formats */
.pg-formats {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #f8fafc;
}

.pg-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pg-format-card {
  padding: 26px 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pg-format-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pg-format-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary-700);
}

.pg-format-icon svg,
.pg-format-icon i {
  width: 24px;
  height: 24px;
}

.pg-format-card h3 {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.pg-format-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Sessions */
.pg-sessions {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #ffffff;
}

.pg-session-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.pg-session-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(15, 118, 110, 0.08);
}

.pg-session-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.pg-session-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
}

.pg-session-empty {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: #f0fdfa;
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.pg-session-empty h3 {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-800);
}

.pg-session-empty p {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
}

.pg-session-empty .pg-btn {
  margin: 0 auto;
}

/* Audience */
.pg-audience {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #f8fafc;
}

.pg-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pg-audience-card {
  padding: 26px 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pg-audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 118, 110, 0.2);
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.1);
}

.pg-audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary-700);
  transition: background 0.25s ease, color 0.25s ease;
}

.pg-audience-card:hover .pg-audience-icon {
  background: var(--primary-700);
  color: #ffffff;
}

.pg-audience-icon svg,
.pg-audience-icon i {
  width: 22px;
  height: 22px;
}

.pg-audience-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.pg-audience-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
}

/* Outcomes */
.pg-outcomes {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #ffffff;
}

.pg-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pg-outcome-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  border-radius: 16px;
  background: #f0fdfa;
  border: 1px solid rgba(15, 118, 110, 0.1);
}

.pg-outcome-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--primary-700);
  flex-shrink: 0;
}

.pg-outcome-icon svg,
.pg-outcome-icon i {
  width: 20px;
  height: 20px;
}

.pg-outcome-card h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Testimonials */
.pg-testimonials {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #f8fafc;
}

.pg-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pg-testimonial-card {
  margin: 0;
  padding: 28px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.08);
  box-shadow: var(--shadow-sm);
}

.pg-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  color: #f59e0b;
}

.pg-stars svg,
.pg-stars i {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
}

.pg-testimonial-card p {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-primary);
}

.pg-testimonial-card footer {
  display: grid;
  gap: 2px;
}

.pg-testimonial-card strong {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
}

.pg-testimonial-card span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-light);
}

/* FAQ */
.pg-faq {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #ffffff;
}

.pg-faq-shell {
  max-width: 860px;
}

.pg-faq-list {
  display: grid;
  gap: 12px;
}

.pg-faq-item {
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.pg-faq-item[open] {
  background: #f0fdfa;
  border-color: rgba(15, 118, 110, 0.16);
}

.pg-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.pg-faq-item summary::-webkit-details-marker {
  display: none;
}

.pg-faq-item summary svg,
.pg-faq-item summary i {
  width: 18px;
  height: 18px;
  color: var(--primary-700);
  transition: transform 0.25s ease;
}

.pg-faq-item[open] summary svg,
.pg-faq-item[open] summary i {
  transform: rotate(180deg);
}

.pg-faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* CTA */
.pg-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 110px) 0;
  background: var(--background);
}

.pg-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 8% 20%, rgba(15, 118, 110, 0.1), transparent 60%),
    radial-gradient(ellipse 50% 60% at 92% 78%, rgba(45, 212, 191, 0.12), transparent 55%);
}

.pg-cta-shell {
  position: relative;
  z-index: 1;
}

.pg-cta-panel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.pg-cta-panel h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 50px);
  font-weight: 400;
  color: var(--text-primary);
}

.pg-cta-panel > p {
  margin: 0 auto 28px;
  max-width: 48ch;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.pg-cta .pg-actions {
  justify-content: center;
}

.pg-cta + .footer {
  margin-top: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .pg-featured-grid,
  .pg-journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pg-goals-grid,
  .pg-formats-grid,
  .pg-audience-grid,
  .pg-outcomes-grid,
  .pg-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pg-featured-main {
    grid-template-columns: 1fr;
  }

  .pg-category summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .pg-mini-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .pg-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pg-btn {
    width: 100%;
  }

  .pg-goals-grid,
  .pg-featured-grid,
  .pg-formats-grid,
  .pg-audience-grid,
  .pg-outcomes-grid,
  .pg-testimonial-grid,
  .pg-journey-steps {
    grid-template-columns: 1fr;
  }

  .pg-session-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
