/* Page-Specific Styles */

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    background-color 0.5s cubic-bezier(0.33, 0, 0.2, 1),
    backdrop-filter 0.5s cubic-bezier(0.33, 0, 0.2, 1),
    border-bottom 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  will-change: transform, opacity;
  opacity: 1;
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.header.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.55, 0, 0.1, 1),
    opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1), background-color 0.3s ease-out,
    backdrop-filter 0.3s ease-out, border-bottom 0.3s ease-out,
    box-shadow 0.3s ease-out;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.header-logo img {
  height: 63px;
  width: auto;
  transition: height 0.3s ease;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease, opacity 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--blue-primary);
}

.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue-primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.header.scrolled .header-nav a {
  color: var(--gray-800);
}

.header.scrolled .header-nav a:hover {
  color: var(--blue-primary);
}

.header-cta {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--blue-primary) 0%, #0052a3 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3), 0 0 20px rgba(0, 102, 204, 0.5);
  color: white;
}

.header-cta svg {
  width: 18px;
  height: 18px;
  fill: #4ade80;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  position: absolute;
  right: 24px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
}

.hamburger span:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0);
}

.hamburger span:nth-child(3) {
  transform: translateY(7px);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  color: var(--gray-900);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--blue-primary);
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.mobile-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Connect Modal Body - Better spacing */
.connectPopup-body {
  padding: 40px;
}

/* Form field styling */
.connectPopup-body .field input,
.connectPopup-group input {
  width: 100%;
  padding: 16px 18px;
  font-size: 15px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  box-sizing: border-box;
  background: white;
  transition: all 0.2s ease;
}

.connectPopup-body .field input:focus,
.connectPopup-group input:focus {
  outline: none;
  border-color: #4299e1;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

/* ADD THIS HERE */
.connectPopup-group {
  margin-bottom: 20px;
}

.connectPopup-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

/* CONNECT button - full width, bright blue */
.connectPopup-body button[type="submit"],
.connectPopup-body .btn {
  width: 100%;
  padding: 16px 24px;
  background: #4299e1;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.connectPopup-body button[type="submit"]:hover,
.connectPopup-body .btn:hover {
  background: #3182ce;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.4);
}

/* Connect Modal Overlay */
.connectPopup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.connectPopup-overlay.active {
  display: flex;
}

.connectPopup-modal {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  max-width: 560px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
}

.connectPopup-header {
  background: linear-gradient(135deg, #2c5282 0%, #2a4365 100%);
  padding: 32px 40px;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.connectPopup-header h3 {
  color: white;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.connectPopup-closeBtn {
  color: white;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.connectPopup-closeBtn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 16px 24px;
  background: var(--black);
  color: var(--gray-500);
}

.footer .wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.footer .grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1.6fr 0.9fr 0.9fr;
  align-items: start;
}

.footer .brand {
  min-width: 260px;
}

.footer .logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 8px;
}

.footer .logo img {
  height: 63px;
  width: auto;
  display: block;
}

.footer .col h3 {
  margin: 2px 0 16px;
  font: 600 14px/1.2 var(--font-body);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #cfd4dc;
}

.footer .list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer .list a {
  color: var(--gray-200);
  text-decoration: none;
  opacity: 0.95;
  font-weight: 300;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer .list a:hover {
  color: var(--white);
  opacity: 1;
}

.footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 53px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--gray-500);
  font-size: 14px;
}

/* Header/Footer Responsive */
@media (max-width: 1024px) {
  .header-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer .grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer .brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .header {
    height: 84px;
    padding: 0 24px;
  }

  .header-logo img {
    height: 54px;
  }

  .mobile-menu {
    width: 260px;
    padding: 84px 24px 24px;
    gap: 20px;
  }

  .mobile-menu a {
    font-size: 14px;
    padding: 10px 0;
  }

  .footer .grid {
    grid-template-columns: 1fr;
  }

  .connectPopup-modal {
    margin: 20px;
    width: calc(100% - 40px);
  }

  .connectPopup-header,
  .connectPopup-body {
    padding: 20px;
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.7vw, 1.3125rem);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  color: var(--gray-300);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  padding: 80px 0 134px 0;
  background: var(--white);
  margin-top: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--gray-500);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== JOURNEY TIMELINE ===== */
.journey-timeline-section {
  background: var(--gray-50);
  padding: 90px 0;
  position: relative;
}

.timeline-header {
  text-align: center;
  margin-bottom: 80px;
}

.timeline-header h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
  margin-top: 0;
}

.timeline-header p {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--gray-500);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.6;
}

.timeline-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gray-300) 0%, var(--gray-400) 100%);
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-content {
  position: relative;
}

.timeline-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 120px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.timeline-step.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step:nth-child(odd) .step-content {
  grid-column: 1;
  text-align: right;
  padding-right: 60px;
}

.timeline-step:nth-child(even) .step-content {
  grid-column: 2;
  text-align: left;
  padding-left: 60px;
}

.timeline-step .step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #fcd34d;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  color: var(--gray-900);
  box-shadow:
    0 0 0 4px var(--gray-50),
    0 0 0 8px white,
    0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.2;
  margin-top: 0;
}

.step-content p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

/* ===== QUIZ SECTION - UPDATED ===== */
.quiz-section {
  padding: 180px 0;
  background: var(--gray-50);
}

.quiz-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.quiz-content {
  background: linear-gradient(135deg, #3b5998 0%, #2d4373 50%, #4169b8 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 60px;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: start;
  position: relative;
  min-height: 700px;
}

.quiz-left {
  color: var(--white);
  z-index: 2;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.quiz-left.revealed {
  opacity: 1;
}

.quiz-headline {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.quiz-subheadline {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
  color: var(--white);
}

.quiz-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
}

/* Quiz Preview Box */
.quiz-right {
  z-index: 2;
}

.quiz-preview {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-preview.revealed {
  opacity: 1;
}

.quiz-progress {
  margin-bottom: 32px;
}

.progress-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #fcd34d 0%, #f59e0b 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.quiz-question {
  margin-bottom: 24px;
}

.quiz-question p {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: auto;
}

.quiz-option {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.quiz-option:hover {
  background: #f8fafc;
  transform: translateX(4px);
}

.quiz-option-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.quiz-option-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
}

/* Option Button Styles (for JavaScript-generated buttons) */
.option-btn {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  font-family: var(--font-body);
  width: 100%;
  margin-bottom: 12px;
  display: block;
}

.option-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.option-btn.selected {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
    0 0 40px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
  animation: pulseGlow 0.6s ease-in-out;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8),
      0 0 50px rgba(255, 255, 255, 0.6), 0 0 75px rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
      0 0 40px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
  }
}

.option-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.option-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  color: #fff;
  display: block;
}

.option-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
}

.back-button {
  align-self: flex-start;
  margin-top: 20px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: none;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.back-button:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.15);
}

/* Thinking/Loading Animation */
.thinking-container {
  text-align: center;
  color: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.thinking-text {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  color: #fff;
}

.thinking-messages {
  font-size: 16px;
  margin-bottom: 40px;
  min-height: 24px;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.9);
}

.thinking-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid #fcd34d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Circle Animation Overlay */
.circle-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.circle-container.hidden {
  opacity: 0;
  pointer-events: none;
}

.circle-container.expanding {
  animation: scaleExpand 1s ease-out forwards;
}

@keyframes scaleExpand {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

.pulse-circle {
  position: absolute;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.expanding-ring {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 3px solid rgba(252, 211, 77, 0.6);
  border-radius: 50%;
  animation: expand 3s ease-out infinite;
}

#ring1 {
  animation-delay: 0s;
}

#ring2 {
  animation-delay: 1s;
}

#ring3 {
  animation-delay: 2s;
}

@keyframes expand {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.circle-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 320px;
  padding: 20px;
}

.circle-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.circle-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}

.circle-subtext {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */

/* Pulse animation for featured card glow */
@keyframes spotlightPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(24, 139, 246, 0.4), 0 20px 40px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(24, 139, 246, 0.1),
      0 20px 40px rgba(0, 0, 0, 0.5);
  }
}

.testimonials-section {
  background: var(--black);
  padding: var(--space-4xl) 0 calc(var(--space-4xl) + 100px);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.testimonial-headline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: var(--space-3xl);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.testimonial-headline-left {
  display: flex;
  align-items: flex-start;
}

.testimonial-headline-left h2 {
  text-align: left;
  margin-bottom: 0;
}

.testimonial-headline-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-headline-right p {
  text-align: left;
  margin: 0 0 var(--space-md) 0;
  max-width: none;
}

.testimonial-headline h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.testimonial-headline p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-400);
  line-height: 1.6;
}

/* Testimonial blockquote - italicized */
#testimonials-splide .testimonial-card blockquote {
  font-style: italic;
}

/* Star rating images */
.star-rating {
  height: 1.5rem; /* Fixed height to align all quotes at same position */
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.star-image {
  height: 1.25rem;
  width: auto;
  opacity: 0.9;
  filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

/* Author styling */
.author-name {
  font-weight: 600;
  color: var(--blue-primary);
  font-size: 1.125rem;
  line-height: 1.25;
  display: inline-block;
  align-self: flex-start;
  text-decoration: none;
}

.author-title,
.author-company {
  font-size: 0.875rem; /* 14px */
  color: var(--gray-400);
  line-height: 1.4;
}

/* CTA link styling */
.testimonial-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-primary);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0;
}

.testimonial-cta-link:hover {
  color: var(--blue-hover);
  transform: translateX(4px);
}

/* ===== TESTIMONIALS CAROUSEL - MULTI-CARD GRID ===== */
#testimonials-splide .splide__slide {
  opacity: 0.6 !important;
  transition: all 0.3s ease, filter 0.4s ease;
  transform: scale(0.98);
  filter: blur(1px);
  will-change: filter, opacity, transform;
}

#testimonials-splide .splide__slide.spotlight-active {
  filter: blur(0);
  opacity: 1 !important;
  transform: scale(1);
  will-change: filter, opacity, transform;
}

#testimonials-splide .splide__slide.spotlight-active .testimonial-card {
  box-shadow: 0 0 0 2px rgba(24, 139, 246, 0.7),
    0 0 20px rgba(24, 139, 246, 0.4),
    0 20px 40px rgba(24, 139, 246, 0.25), 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: spotlightPulse 3s ease-in-out infinite;
}

#testimonials-splide .splide__slide.spotlight-active:hover {
  transform: translateY(-5px);
}

#testimonials-splide .splide__slide.spotlight-active:hover .testimonial-card {
  box-shadow: 0 0 0 1px rgba(24, 139, 246, 0.5),
    0 24px 48px rgba(24, 139, 246, 0.25), 0 24px 48px rgba(0, 0, 0, 0.5);
}

#testimonials-splide .splide__slide:not(.spotlight-active):hover {
  transform: translateY(-2px);
}

#testimonials-splide
  .splide__slide:not(.spotlight-active):hover
  .testimonial-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  filter: blur(1.5px);
}

#testimonials-splide .testimonial-card {
  min-height: 450px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: box-shadow 0.3s ease, border-top 0.3s ease;
}

/* Navigation arrows positioned below testimonials */
#testimonials-splide .splide__arrows {
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  width: auto;
  z-index: 10;
}

#testimonials-splide .splide__arrow {
  position: static !important;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

#testimonials-splide .splide__arrow:hover {
  background: rgba(24, 139, 246, 0.2);
  border-color: var(--blue-primary);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(24, 139, 246, 0.4);
}

#testimonials-splide .splide__arrow svg {
  fill: white;
  width: 20px;
  height: 20px;
}

/* Add padding to testimonials section for arrows */
#tst-testimonials {
  padding-bottom: 150px;
  position: relative;
  overflow: visible;
}

#testimonials-splide {
  position: relative;
  padding-top: 20px;
}

/* Allow testimonial cards to expand upward on hover without being clipped */
#testimonials-splide .splide__track,
#testimonials-splide .splide__list {
  overflow: visible !important;
}

/* Remove gradient masks for full-width single view */
#testimonials-splide.splide::before,
#testimonials-splide.splide::after {
  display: none;
}

/* Responsive adjustments for testimonials section */
@media (max-width: 768px) {
  .testimonials-section {
    padding: var(--space-4xl) var(--space-md) calc(var(--space-4xl) + 100px);
  }

  .testimonial-headline {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 var(--space-md);
  }

  #testimonials-splide {
    padding-top: 20px;
  }

  .testimonial-headline-left h2,
  .testimonial-headline-right p {
    text-align: center;
  }

  .testimonial-headline-right {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: var(--space-4xl) var(--space-sm) calc(var(--space-4xl) + 100px);
  }

  .testimonial-headline {
    padding: 0 var(--space-sm);
  }

  #testimonials-splide {
    padding-top: 20px;
  }
}

/* Responsive adjustments */
@media (max-width: 1400px) {
  #testimonials-splide .testimonial-card {
    min-height: 430px;
  }
}

@media (max-width: 1024px) {
  #testimonials-splide .testimonial-card {
    min-height: 410px;
  }
}

@media (max-width: 768px) {
  #testimonials-splide .splide__slide {
    opacity: 1 !important;
    transform: scale(1);
    filter: blur(0) !important;
  }

  #testimonials-splide .testimonial-card {
    min-height: 390px;
  }

  #testimonials-splide .splide__arrow {
    width: 44px;
    height: 44px;
  }

  #testimonials-splide .splide__arrows {
    bottom: -100px;
  }

  #tst-testimonials {
    padding-bottom: 130px;
  }
}

@media (max-width: 480px) {
  #testimonials-splide .testimonial-card {
    min-height: 370px;
    padding: 1.5rem;
  }

  #testimonials-splide .splide__arrow {
    width: 40px;
    height: 40px;
  }

  #testimonials-splide .splide__arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* ===== FACULTY SECTION ===== */
.hero-headline-section-attroneys {
  background: var(--gray-50);
  padding: 135px 20px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.faculty-section {
  background: var(--gray-50);
  padding: 36px 40px 80px;
  position: relative;
  z-index: 2;
}

.faculty-container {
  max-width: 1400px;
  margin: 0 auto;
}

.faculty-content {
  padding: 20px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.faculty-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.faculty-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--purple-accent);
  margin-bottom: 16px;
}

.faculty-bio {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.6em * 3);
}

.faculty-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-primary);
  text-decoration: none;
  transition: color var(--transition-slow);
}

.faculty-link:hover {
  color: #0c5ca8;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--gray-50);
  padding: 100px 80px 135px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 60px;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 20px;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.faq-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

/* ===== FINAL CTA SECTION ===== */
/* ===== HERO HEADLINE SECTION - TWO COLUMN LAYOUT ===== */
.hero-headline-section {
  padding: 4rem 0;
  background: #000000;
}

.headline-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.headline-left {
  text-align: left;
}

.headline-left h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
}

.headline-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.headline-right p {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
  color: #9ca3af;
}

.hero-headline-section .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #188bf6;
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  position: relative;
  padding-bottom: 2px;
}

.hero-headline-section .cta-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #188bf6;
  transition: width 0.3s ease;
}

.hero-headline-section .cta-link:hover {
  color: #1e7fd3;
  transform: translateY(-1px);
}

.hero-headline-section .cta-link:hover::after {
  width: calc(100% - 30px);
}

.hero-headline-section .cta-link svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-headline-section .cta-link:hover svg {
  transform: translateX(6px) scale(1.1);
}

/* Responsive adjustments for headline section */
@media (max-width: 1024px) {
  .headline-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 2rem;
  }

  .headline-left {
    text-align: center;
  }

  .headline-right {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-headline-section {
    padding: 3rem 0;
  }

  .headline-wrapper {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .headline-left h1 {
    font-size: 2rem;
  }

  .headline-right p {
    font-size: 1rem;
  }

  .hero-headline-section .cta-link {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-headline-section {
    padding: 2rem 0;
  }

  .headline-wrapper {
    padding: 0 1rem;
  }

  .headline-left h1 {
    font-size: 1.75rem;
  }
}

.cta-button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 150px;
}

.cta-cascade {
  display: block;
  line-height: 1.05;
  font-style: italic;
  color: var(--blue-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  font-family: var(--font-heading);
}

#iaml-cta h2 {
  font-family: var(--font-body);
  font-weight: 300;
}

#iaml-cta p {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

#iaml-cta {
  padding-top: calc(15rem + 35px);
  padding-bottom: 12rem;
  background-color: #ffffff;
}

#transform-cta {
  padding-top: calc(5rem + 50px);
  padding-bottom: calc(5rem - 150px);
}

#transform-cta h2 {
  font-family: var(--font-heading);
  font-weight: 300;
}

#transform-cta .btn:hover {
  transform: scale(1.02);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
  .quiz-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .circle-container {
    width: 300px;
    height: 300px;
  }

  .pulse-circle {
    width: 120px;
    height: 120px;
  }

  .expanding-ring {
    width: 120px;
    height: 120px;
  }

  .faq-grid {
    grid-template-columns: 40% 60%;
    gap: 40px;
  }

  .timeline-step {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: var(--space-3xl) 0;
  }

  .benefits-section {
    padding: 40px 0 80px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .journey-timeline-section {
    padding: 50px 0;
  }

  .timeline-header h2 {
    font-size: 36px;
  }

  .timeline-step {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    gap: 30px;
    align-items: center;
  }

  .timeline-track {
    display: none;
  }

  .timeline-step .step-number {
    position: relative;
    left: inherit;
    right: inherit;
    top: inherit;
    margin: auto;
  }

  .timeline-step .step-content {
    grid-column: auto;
    padding: 0 !important;
    text-align: center !important;
  }

  .quiz-section {
    padding: 100px 0;
  }

  .quiz-content {
    padding: 30px 20px;
  }

  .quiz-headline {
    font-size: 28px;
  }

  .quiz-subheadline {
    font-size: 16px;
  }

  .circle-container {
    width: 250px;
    height: 250px;
  }

  .faq-section {
    padding: 80px 40px 115px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-header {
    position: static;
  }

  .faq-title {
    font-size: 36px;
  }

  .faculty-section {
    padding: 24px 20px 60px;
  }

  #iaml-cta {
    padding-top: calc(8rem + 35px);
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .cta-button-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== RECOMMENDATION MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow-y: auto;
}

.modal-content {
  background: #fff;
  margin: 2% auto;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  /* Hide scrollbar while maintaining scroll functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.modal-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.modal-header {
  background: linear-gradient(
    135deg,
    var(--blue-dark) 0%,
    var(--blue-darker) 100%
  );
  color: #fff;
  padding: 40px;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-program-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  padding-right: 40px;
  line-height: 1.2;
  color: #ffffff !important;
}

.modal-program-description {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95) !important;
}

.modal-body {
  padding: 40px;
}

.modal-section-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
}

.modal-benefits-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 20px;
}

.modal-benefit-list,
.modal-topics-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.modal-benefit-list li,
.modal-topics-list li {
  font-family: var(--font-body);
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}

.modal-benefit-list li::before,
.modal-topics-list li::before {
  content: "✓";
  color: #22c55e;
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}

.modal-cta-section {
  background: #f8fafc;
  padding: 30px 40px;
  border-radius: 0 0 20px 20px;
  text-align: center;
}

.modal-cta-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: #475569;
  margin-bottom: 25px;
}

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}


.btn-secondary {
  background: #fff;
  color: #374151;
}

.btn-secondary:hover {
  background: #f9fafb;
  transform: translateY(-2px);
}

/* ===== PROGRAM PAGE HERO SECTION ===== */

/* Two-column hero layout for program pages */
.hero-section-program {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  padding: 200px 0 144px 0;
  position: relative;
  overflow: hidden;
}

.hero-section-program .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-2xl);
}

.hero-program-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

/* Program Header - Left Column */
.hero-section-program .program-header {
  width: 100%;
  max-width: 600px;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.hero-section-program .program-title {
  margin: 0 0 var(--space-lg) 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
}

.hero-section-program .program-description {
  max-width: 100%;
  margin: 0 0 var(--space-xl) 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

/* Delivery Options - Override for Dark Background in Hero Section */
.hero-section-program .delivery-label {
  color: rgba(255, 255, 255, 0.7);
}

.hero-section-program .format-pill {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-section-program .format-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-section-program .delivery-options {
  margin-bottom: 0;
}

/* Next Program Card Component */
.next-program-card {
  width: 100%;
  height: fit-content;
  font-family: var(--font-body);
}

.program-card-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  position: relative;
}

.hero-program-card {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: all var(--transition-base) ease;
}

.hero-program-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.card-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.3) 0%,
    rgba(30, 41, 59, 0.7) 40%,
    rgba(15, 23, 42, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-2xl);
  color: var(--white);
}

.next-program-badge {
  background: rgba(107, 114, 128, 0.9);
  color: var(--white);
  text-align: center;
  padding: var(--space-sm) var(--space-lg);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  align-self: center;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4), 0 2px 6px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}

.program-info {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-location {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  text-transform: capitalize;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 1.5px;
  word-spacing: -3px;
  color: var(--white);
}

.program-dates {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: var(--space-lg);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  color: var(--white);
}

.program-link-container {
  text-align: center;
  margin-top: auto;
  padding-top: var(--space-md);
}

.view-all-programs-link {
  color: var(--blue-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.9;
  transition: all var(--transition-base) ease;
  border-bottom: 1px solid transparent;
}

.view-all-programs-link:hover {
  opacity: 1;
  border-bottom: 1px solid var(--blue-primary);
  transform: translateY(-1px);
}

.view-all-programs-link:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Responsive: Tablet and below */
@media (max-width: 1024px) {
  .hero-program-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .program-header {
    max-width: 100%;
  }

  .program-card-container {
    min-height: 350px;
  }
}

/* Responsive: Tablet */
@media (max-width: 768px) {
  .hero-section-program {
    min-height: auto;
    padding: var(--space-3xl) 0;
  }

  .hero-section-program .container {
    padding: 0 var(--space-lg);
  }

  .hero-program-wrapper {
    gap: var(--space-2xl);
  }

  .program-title {
    font-size: clamp(2rem, 5.5vw, 3rem);
    margin-bottom: var(--space-xl);
  }

  .program-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--space-xl);
  }

  .program-card-container {
    min-height: 300px;
  }

  .card-overlay {
    padding: var(--space-xl);
  }

  .program-location {
    font-size: 20px;
  }

  .program-dates {
    font-size: 14px;
  }

  .next-program-badge {
    font-size: 11px;
    padding: var(--space-sm) var(--space-md);
  }

  .view-all-programs-link {
    font-size: 13px;
  }

  .program-link-container {
    padding-top: var(--space-sm);
  }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
  .hero-section-program {
    padding: var(--space-2xl) 0;
  }

  .hero-section-program .container {
    padding: 0 var(--space-md);
  }

  .hero-program-wrapper {
    gap: var(--space-xl);
  }

  .program-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    margin-bottom: var(--space-lg);
  }

  .program-description {
    font-size: clamp(0.9375rem, 3vw, 1.125rem);
    margin-bottom: var(--space-lg);
  }

  .card-overlay {
    padding: var(--space-lg);
  }

  .program-location {
    font-size: 18px;
  }

  .view-all-programs-link {
    font-size: 12px;
  }
}

/* ===== PROGRAM SCHEDULE PAGE ===== */
.program-schedule-hero {
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  padding-top: 140px; /* Accounts for 100px header + 40px spacing */
}

.program-schedule-hero .trusted-text {
  color: #188bf6;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.program-schedule-hero .main-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.program-schedule-hero .description {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.7vw, 1.3125rem);
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.program-schedule-hero .button-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Program Schedule Hero - Responsive */
@media (max-width: 768px) {
  .program-schedule-hero {
    padding-top: 104px; /* Accounts for 84px mobile header + 20px spacing */
  }

  .program-schedule-hero .main-headline {
    font-size: 2.5rem;
  }

  .program-schedule-hero .description {
    font-size: 1.1rem;
  }

  .program-schedule-hero .button-container {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .program-schedule-hero .main-headline {
    font-size: 2rem;
  }

  .program-schedule-hero .description {
    font-size: 1rem;
  }
}

/* ============================================
   FEATURED PROGRAMS PAGE
   ============================================ */

/* Page Background - Fixed image */
.featured-programs-page {
  background: url("https://storage.googleapis.com/msgsndr/MjGEy0pobNT9su2YJqFI/media/68772e069ee71492645b2f10.jpeg")
    no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
}

/* Hero Section */
.fp-hero-section {
  text-align: center;
  width: 100%;
  padding: 187px 20px 120px 20px;
  background: var(--black);
}

.fp-hero-content {
  position: relative;
  z-index: 2;
}

.fp-trusted-text {
  color: #188bf6;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.fp-main-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.fp-description {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.7vw, 1.3125rem);
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.fp-button-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Programs Section */
.fp-programs-section {
  background: #f8f9fa;
  padding: 60px 0 100px;
}

.fp-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Practice Area Navigation */
.fp-practice-nav {
  background: #1e3a5f;
  padding: 32px;
  margin-bottom: 100px;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.fp-nav-container {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.fp-nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.fp-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fp-nav-link.active {
  background-color: white;
  color: var(--blue-primary);
  font-weight: 700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fp-nav-link:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Tab Content */
.fp-tab-content {
  display: none;
}

.fp-tab-content.active {
  display: block;
  animation: fpFadeIn 0.5s ease-in-out;
}

@keyframes fpFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Program Cards */
.fp-program-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 249, 250, 0.85) 100%
  );
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.fp-program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 8px 24px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.fp-program-content {
  flex: 1;
  max-width: 52%;
}

.fp-certificate-corner {
  position: absolute;
  top: -10px;
  left: -10px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
  font-family: var(--font-body);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fp-certificate-corner:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #ff1a1a 0%, #e60000 100%);
}

.fp-program-title {
  color: var(--gray-900);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.fp-program-duration-price {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.fp-duration {
  font-family: var(--font-body);
  color: #475569;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.fp-duration strong {
  font-weight: 600;
}

.fp-separator {
  color: #94a3b8;
  margin: 0 13px;
  font-weight: 400;
}

.fp-price {
  font-family: var(--font-body);
  color: #475569;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.fp-price strong {
  font-weight: 600;
}

.fp-program-description {
  color: #555;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Delivery Options */
.fp-delivery-options {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: nowrap;
  overflow: hidden;
  min-height: 28px;
}

.fp-delivery-option {
  padding: 6px 12px;
  background: #f1f3f4;
  border: 1px solid #e1e5e9;
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.fp-module-card .fp-delivery-option {
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  color: #737373;
}

.fp-learn-more-btn::after {
  content: " \2192";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.fp-learn-more-btn:hover::after {
  transform: translateX(4px);
}

/* Testimonial Container */
.fp-testimonial-container {
  flex: 0 0 45%;
  position: relative;
  padding: 32px 24px 24px;
  background: linear-gradient(
    145deg,
    rgba(248, 249, 250, 0.85) 0%,
    rgba(255, 255, 255, 0.75) 100%
  );
  backdrop-filter: blur(15px) saturate(130%);
  -webkit-backdrop-filter: blur(15px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  align-self: flex-start;
  display: flex;
  flex-direction: column;
}

.fp-testimonial-static {
  display: none;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.fp-testimonial-static.active {
  display: flex;
  opacity: 1;
  animation: fpFadeIn 0.4s ease-in-out;
}

.fp-testimonial-static:hover {
  /* No hover transform for single testimonial view */
}

.fp-testimonial-text {
  font-style: italic;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.625;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-weight: 400;
  position: relative;
  padding: 24px 40px;
  text-align: center;
}

.fp-testimonial-text::before {
  content: "\201C";
  font-size: 3rem;
  color: rgba(180, 180, 180, 0.5);
  position: absolute;
  top: -8px;
  left: 8px;
  font-family: Georgia, serif;
  line-height: 1;
}

.fp-testimonial-text::after {
  content: "\201D";
  font-size: 3rem;
  color: rgba(180, 180, 180, 0.5);
  position: absolute;
  bottom: 0;
  right: 8px;
  font-family: Georgia, serif;
  line-height: 1;
}

.fp-testimonial-author {
  margin-top: auto;
}

.fp-author-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: #1e3a5f;
  margin-bottom: 4px;
  text-shadow: 0 1px 2px rgba(30, 58, 95, 0.2);
  line-height: 1.25;
  position: relative;
  display: inline-block;
}

.fp-author-name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1e3a5f, transparent);
  opacity: 0.5;
}

.fp-author-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 4px;
  font-weight: 500;
  line-height: 1.25;
}

.fp-author-company {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.2;
}

.fp-rating {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 2px;
}

.fp-stars-image {
  width: 140px;
  height: 28px;
  background: url("https://storage.googleapis.com/msgsndr/MjGEy0pobNT9su2YJqFI/media/68d667936fe1a53fe6603670.png")
    center/contain no-repeat;
  filter: drop-shadow(0 1px 2px rgba(255, 193, 7, 0.3));
}

/* Testimonial Navigation Dots */
.fp-testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.fp-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.fp-nav-dot:hover {
  background: rgba(0, 0, 0, 0.4);
}

.fp-nav-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #1e3a5f;
}

/* Certificate Program Container */
.fp-certificate-program-container {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 249, 250, 0.9) 100%
  );
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border: 2px solid var(--gray-100);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 48px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fp-certificate-program-container:hover {
  border: 2px solid rgba(74, 93, 122, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.18), 0 10px 32px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.fp-certificate-program-container .fp-program-card {
  border: none;
  box-shadow: none;
  background: transparent;
  margin-bottom: 20px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.fp-certificate-program-simple {
  margin-bottom: 60px;
}

.fp-certificate-program-simple .fp-program-card {
  margin-bottom: 0;
}

.fp-certificate-program-simple .fp-program-title {
  margin-top: 20px;
}

/* Module Divider */
.fp-module-divider {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 0 0 40px 0;
}

/* Module Notice Container */
.fp-module-notice-container {
  background: #e9ecef;
  margin: 0 0 30px 0;
  padding: 15px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  border-radius: 8px;
}

.fp-module-notice {
  background: #d69e2e;
  border: 1px solid #b7791f;
  color: white;
  font-family: var(--font-body);
  text-align: center;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
}

/* Module Cards Grid */
.fp-modules-grid {
  display: flex;
  gap: 24px;
  margin-top: 0;
  justify-content: space-between;
}

.fp-module-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  flex: 1;
  min-width: 0;
}

.fp-module-card {
  flex: 1;
  min-width: 0;
  background: white;
  border-radius: 12px;
  padding: 40px 32px 32px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.fp-module-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #188BF6;
}

.fp-module-card::before {
  content: "\2197";
  position: absolute;
  top: 15px;
  right: 15px;
  color: #28528c;
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
  z-index: 3;
}

.fp-module-card:hover::before {
  opacity: 0.7;
  transform: translateY(0);
}

.fp-block-label {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #1e3a5f;
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  z-index: 2;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.fp-module-label {
  display: none;
}

.fp-module-title {
  color: var(--gray-900);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.25;
  transition: all 0.2s ease;
  position: relative;
}

.fp-module-title::after {
  display: none;
}

.fp-module-card:hover .fp-module-title::after {
  opacity: 1;
  transform: translateX(0);
}

.fp-module-info {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.fp-module-duration {
  font-family: var(--font-body);
  color: #475569;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

.fp-module-duration strong {
  font-weight: 600;
}

.fp-module-price {
  font-family: var(--font-body);
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}

.fp-module-description {
  font-family: var(--font-body);
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* CTA Section */
.fp-cta-section {
  background: white;
  padding-top: 15rem;
  padding-bottom: 12rem;
}

.fp-cta-section h2 {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--gray-900);
}

.fp-cta-section p {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  color: var(--gray-500);
}

.fp-cta-section .cta-cascade {
  display: block;
  line-height: 1.05;
  font-style: italic;
  color: var(--blue-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  font-family: var(--font-heading);
}

.fp-cta-section .cta-button-group {
  margin-bottom: 0;
}

/* CTA Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--blue-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(24, 139, 246, 0.3);
}

.cta-button:hover {
  color: white;
  background: #1478d1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 139, 246, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button:focus {
  outline: none;
}

.cta-button:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 4px;
}

.cta-button.cta-red {
  background: #dc2626;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.cta-button.cta-red:hover {
  background: #b91c1c;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.cta-button.cta-red:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 4px;
}

/* Scroll Reveal - Featured Programs Page */
.featured-programs-page .scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-programs-page .scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.featured-programs-page .scroll-reveal:nth-child(1) {
  transition-delay: 0ms;
}
.featured-programs-page .scroll-reveal:nth-child(2) {
  transition-delay: 150ms;
}
.featured-programs-page .scroll-reveal:nth-child(3) {
  transition-delay: 300ms;
}
.featured-programs-page .scroll-reveal:nth-child(4) {
  transition-delay: 450ms;
}

.featured-programs-page .scroll-reveal.fade-up {
  transform: translateY(50px);
}

.featured-programs-page .scroll-reveal.scale-up {
  transform: translateY(30px) scale(0.9);
}

.featured-programs-page .scroll-reveal.scale-up.revealed {
  transform: translateY(0) scale(1);
}

/* Featured Programs Page Responsive */
@media (max-width: 1024px) {
  .fp-modules-grid {
    flex-direction: column;
    gap: 16px;
  }

  .fp-module-card-link {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .fp-hero-section {
    padding: 100px 20px 80px 20px;
  }

  .fp-main-headline {
    font-size: 2.5rem;
  }

  .fp-description {
    font-size: 1.1rem;
  }

  .fp-button-container {
    flex-direction: column;
    gap: 20px;
  }

  .fp-practice-nav {
    margin: 0 15px 30px 15px;
    padding: 20px;
  }

  .fp-nav-container {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    padding: 0 1rem;
  }

  .fp-nav-link {
    display: block;
    text-align: center;
    min-width: 200px;
  }

  .fp-certificate-program-container {
    padding: 20px;
    margin-bottom: 30px;
  }

  .fp-module-notice-container {
    margin: 30px 0 30px 0;
    padding: 15px 20px;
    justify-content: center;
  }

  .fp-module-notice {
    white-space: normal;
  }

  .fp-program-card {
    flex-direction: column;
    padding: 15px;
  }

  .fp-program-content {
    max-width: 100%;
  }

  .fp-certificate-corner {
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
    margin-bottom: 10px;
  }

  .fp-testimonial-container {
    flex: 1;
  }

  .fp-testimonial-static {
    padding: 16px 0;
  }

  .fp-program-title {
    font-size: 24px;
  }

  .fp-delivery-options {
    flex-wrap: wrap;
  }

  .fp-testimonial-text {
    padding: 20px 28px;
    font-size: 0.9rem;
  }

  .fp-cta-section {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 480px) {
  .fp-main-headline {
    font-size: 2rem;
  }

  .fp-description {
    font-size: 1rem;
  }

  .fp-practice-nav {
    margin: 0 0 30px 0;
    padding: 15px;
  }

  .fp-nav-container {
    padding: 0 1rem;
  }

  .fp-cta-section .cta-button-group {
    flex-direction: column;
    width: 100%;
  }

  .fp-cta-section .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .featured-programs-page .scroll-reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .fp-program-card,
  .fp-certificate-program-container,
  .fp-module-card,
  .fp-testimonial-container {
    transition: none;
  }
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* ===== ABOUT US HERO SECTION ===== */
.about-hero-section {
  width: 100%;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 157px 20px 80px;
}

.about-hero-content {
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.about-trusted-text {
  color: #188bf6;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.about-main-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-description {
  font-family: "Lato", sans-serif;
  font-size: clamp(1.0625rem, 1.7vw, 1.3125rem);
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.about-button-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== WHAT MAKES DIFFERENT SECTION ===== */
.what-makes-different-hero {
  background: #f3f4f6;
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.what-makes-different-hero .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.hero-content-center {
  text-align: center;
  max-width: 900px;
  padding-top: 75px;
}

.what-makes-different-hero .hero-headline {
  font-size: 3.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #1f2937;
}

.what-makes-different-hero .hero-subtext {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  color: #4b5563;
}

/* 3D Flip Animation */
.hero-headline-3d {
  perspective: 1000px;
}

.hero-headline-3d .line {
  display: block;
  opacity: 0;
  transform: rotateX(-90deg);
  transform-origin: center bottom;
}

.hero-headline-3d.animate-in .line {
  animation: flip3d 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-headline-3d.animate-in .line:nth-child(1) {
  animation-delay: 0.3s;
}
.hero-headline-3d.animate-in .line:nth-child(2) {
  animation-delay: 1.3s;
}
.hero-headline-3d.animate-in .line:nth-child(3) {
  animation-delay: 2.3s;
}

@keyframes flip3d {
  0% {
    opacity: 0;
    transform: rotateX(-90deg) translateY(20px);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
  }
}

.hero-subtext-animated,
.btn-animated {
  opacity: 0;
  transform: rotateX(-90deg);
  transform-origin: center bottom;
}

.hero-subtext-animated.animate-in,
.btn-animated.animate-in {
  animation: flip3d 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 3.3s;
}

/* ===== TESTIMONIAL CAROUSEL ===== */
.hero-testimonial-section {
  width: 100%;
  max-width: 1200px;
  margin-top: 1.5rem;
  padding-bottom: 50px;
  opacity: 0;
  transition: opacity 0.8s ease-in;
}

.hero-testimonial-section.show {
  opacity: 1;
}

.hero-carousel-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 2rem 0 3rem;
  min-height: 8px;
}

.hero-carousel-pagination .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(55, 65, 81, 0.3);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  padding: 0;
}

.hero-carousel-pagination .dot:hover {
  background: rgba(55, 65, 81, 0.6);
}

.hero-carousel-pagination .dot.active {
  background: rgba(55, 65, 81, 0.9);
  width: 24px;
  border-radius: 4px;
}

.hero-testimonial-carousel {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2000px;
  margin: 0 auto;
}

.hero-testimonial-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-testimonial-card {
  position: absolute;
  width: 450px;
  max-width: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 800ms cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.2rem;
  padding: 1.75rem;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  user-select: none;
}

.hero-testimonial-card[data-position] {
  display: flex;
}

.hero-testimonial-card[data-position="left2"] {
  transform: translate(-180%, -50%) scale(0.7) rotateY(16deg);
  opacity: 0.35;
  z-index: 0;
  filter: blur(4px);
  background: rgba(255, 255, 255, 0.88);
}

.hero-testimonial-card[data-position="left"] {
  transform: translate(-105%, -50%) scale(0.8) rotateY(10deg);
  opacity: 0.5;
  z-index: 2;
  filter: blur(2px);
  background: rgba(255, 255, 255, 0.92);
}

.hero-testimonial-card[data-position="center"] {
  transform: translate(-50%, -50%) scale(1.05) rotateY(0deg);
  opacity: 1;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(240, 240, 240, 0.9);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.08);
  filter: blur(0);
}

.hero-testimonial-card[data-position="center"]:hover {
  transform: translate(-50%, -50%) scale(1.06) rotateY(0deg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.14), 0 12px 25px rgba(0, 0, 0, 0.1);
}

.hero-testimonial-card[data-position="right"] {
  transform: translate(5%, -50%) scale(0.8) rotateY(-10deg);
  opacity: 0.5;
  z-index: 2;
  filter: blur(2px);
  background: rgba(255, 255, 255, 0.92);
}

.hero-testimonial-card[data-position="right2"] {
  transform: translate(80%, -50%) scale(0.7) rotateY(-16deg);
  opacity: 0.35;
  z-index: 0;
  filter: blur(4px);
  background: rgba(255, 255, 255, 0.88);
}

.hero-testimonial-card[data-position="hidden"] {
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== TESTIMONIAL CAROUSEL NAVIGATION ARROWS ===== */
.about-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.25;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.about-carousel-arrow svg {
  width: 24px;
  height: 24px;
  stroke: #1a1a1a;
  stroke-width: 2.5;
  transition: stroke 0.3s ease;
}

.about-carousel-arrow:hover {
  opacity: 0.7;
  background: rgba(0, 0, 0, 0.04);
}

.about-carousel-arrow:hover svg {
  stroke: #000;
}

.about-carousel-arrow:active {
  transform: translateY(-50%) scale(0.92);
  opacity: 0.9;
}

.about-carousel-arrow--prev {
  left: -60px;
}

.about-carousel-arrow--next {
  right: -60px;
}

/* Responsive adjustments for carousel arrows */
@media (max-width: 1400px) {
  .about-carousel-arrow--prev {
    left: -20px;
  }

  .about-carousel-arrow--next {
    right: -20px;
  }
}

@media (max-width: 1200px) {
  .about-carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .about-carousel-arrow svg {
    width: 22px;
    height: 22px;
  }

  .about-carousel-arrow--prev {
    left: 10px;
  }

  .about-carousel-arrow--next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .about-carousel-arrow {
    width: 36px;
    height: 36px;
    opacity: 0.35;
  }

  .about-carousel-arrow svg {
    width: 20px;
    height: 20px;
  }

  .about-carousel-arrow--prev {
    left: 8px;
  }

  .about-carousel-arrow--next {
    right: 8px;
  }
}

/* Testimonial Card Content */
.star-rating {
  margin-bottom: 0.75rem;
}

.star-image {
  height: 1.25rem;
  width: auto;
  opacity: 1;
  filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

.testimonial-quote {
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.625;
  color: #374151;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 10;
}

.testimonial-author-section {
  padding-top: 0.75rem;
  margin-top: 0;
}

.author-name {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.25;
  color: #188bf6;
  text-shadow: 0 1px 2px rgba(24, 139, 246, 0.2);
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.author-name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #188bf6;
  opacity: 0.5;
}

.author-title,
.author-company {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0.25rem;
}

.author-company {
  font-weight: 500;
}

/* ===== FEATURED INSTRUCTORS ===== */
.featured-instructors {
  margin-top: 4rem;
  padding-top: 3rem;
  padding-bottom: 130px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

.instructors-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.instructor-card-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.instructor-card-mini:nth-child(1),
.instructor-card-mini:nth-child(3) {
  transform: translateY(-30px);
}

.instructor-card-mini:nth-child(2),
.instructor-card-mini:nth-child(4) {
  transform: translateY(30px);
}

.instructor-card-mini:hover {
  transform: translateY(-4px);
}

.instructor-card-mini:nth-child(1):hover,
.instructor-card-mini:nth-child(3):hover {
  transform: translateY(-34px);
}

.instructor-card-mini:nth-child(2):hover,
.instructor-card-mini:nth-child(4):hover {
  transform: translateY(26px);
}

.instructor-image-wrapper {
  position: relative;
  width: 180px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.instructor-card-mini:hover .instructor-image-wrapper {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.instructor-mini-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instructor-mini-photo.placeholder-image {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  padding: 1rem;
}

.instructor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.instructor-card-mini:hover .instructor-overlay {
  opacity: 1;
}

.instructor-info {
  color: white;
  text-align: center;
}

.instructor-mini-name {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.instructor-mini-title {
  font-family: "Lato", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.35rem 0;
  line-height: 1.4;
}

.instructor-mini-company {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.4;
}

.instructor-profile-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.instructor-profile-btn:hover {
  background: white;
  color: #1f2937;
  border-color: white;
  transform: translateY(-2px);
}

.view-faculty-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  background: transparent;
  color: #188bf6;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  align-self: center;
}

.view-faculty-link:hover {
  border-bottom-color: #188bf6;
}

.link-arrow {
  width: 20px;
  height: 20px;
  color: inherit;
  transition: transform 0.3s ease;
}

.view-faculty-link:hover .link-arrow {
  transform: translateX(4px);
}

/* ===== PRESIDENT'S MESSAGE SECTION ===== */
.president-message-section {
  position: relative;
  padding: 155px 60px 105px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
  min-height: 100vh;
}

.president-message-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(24, 139, 246, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 106, 0, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.president-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.message-header {
  text-align: center;
  margin-bottom: 80px;
}

.message-label {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff6a00;
  display: inline-block;
  padding-bottom: 16px;
  border-bottom: 2px solid #ff6a00;
  margin-bottom: 24px;
  font-weight: 500;
}

.message-title {
  font-size: 48px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.2;
  margin-top: 16px;
}

.typewriter-content {
  color: #374151;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 80px;
}

.typewriter-content p {
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.typewriter-content .highlight-text {
  background: rgba(24, 139, 246, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 400;
  color: #188bf6;
}

.typewriter-content .emphasis {
  font-style: italic;
  color: #ff6a00;
  font-weight: 400;
}

.president-signature {
  padding-top: 64px;
  padding-bottom: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: opacity 1s ease-in;
  text-align: center;
}

.president-signature.visible {
  opacity: 1;
}

.signature-details {
  max-width: 400px;
  margin: 0 auto;
}

.signature-image {
  max-width: 140px;
  height: auto;
  margin: 0 auto 8px;
  display: block;
  border-radius: 8px;
}

.signature-divider {
  width: 60px;
  height: 3px;
  background: #ff6a00;
  margin: 16px auto 24px;
}

.signature-closing {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #374151;
  margin-bottom: 32px;
  margin-top: 24px;
}

.signature-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.signature-title {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  letter-spacing: 0.5px;
  margin: 0 0 4px 0;
}

.signature-organization {
  font-size: 15px;
  font-weight: 400;
  color: #6b7280;
  letter-spacing: 0.3px;
  margin: 0 0 6px 0;
  line-height: 1.5;
}

.signature-logo {
  max-width: 150px;
  height: auto;
  margin: 0 auto;
  display: block;
  background: transparent;
}

/* ===== FACULTY SHOWCASE SECTION ===== */
.faculty-showcase-section {
  background: #f3f4f6;
  padding: 6rem 0;
  position: relative;
  width: 100%;
}

.faculty-intro-wrapper {
  max-width: 1400px;
  margin: 0 auto 6rem;
  padding: 50px 60px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.faculty-intro-left {
  flex: 1;
  max-width: 700px;
}

.faculty-main-headline {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1f2937;
  text-align: left;
}

.faculty-main-subheadline {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
  margin: 0;
  text-align: left;
}

.faculty-intro-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.faculty-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  max-width: 450px;
}

.faculty-logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  min-width: 120px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  display: block;
  margin: auto;
}

.faculty-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  justify-content: center;
}

.faculty-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
}

.faculty-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faculty-photo-wrapper {
  width: 100%;
  max-width: 240px;
  margin-bottom: 1.5rem;
  position: relative;
}

.faculty-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faculty-photo.placeholder-image {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  padding: 1rem;
}

.faculty-photo:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faculty-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
  font-weight: 600;
}

.faculty-title {
  color: #6b7280;
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.faculty-credentials {
  color: #6b7280;
  line-height: 1.5;
  font-style: italic;
}

.faculty-cta-section {
  text-align: center;
  margin-top: 6rem;
}

.faculty-cta-section .btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  background: #28528c;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.faculty-cta-section .btn:hover {
  background: #222639;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 82, 140, 0.3);
}

/* ============================================
   FACULTY PAGE STYLES
   ============================================ */

/* ===== FACULTY HERO SECTION ===== */
.faculty-hero-section {
  width: 100%;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4xl) 20px;
}

.faculty-hero-content {
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.faculty-trusted-text {
  color: #188bf6;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 80px;
  margin-bottom: 32px;
}

.faculty-hero-section .faculty-main-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faculty-hero-description {
  font-family: "Lato", sans-serif;
  font-size: clamp(1.0625rem, 1.7vw, 1.3125rem);
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.faculty-button-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== FACULTY CONTENT SECTION ===== */
.faculty-content-section {
  background: #f8f9fa;
  padding: 60px 0 100px;
}

.faculty-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== FACULTY NAV OVERRIDE ===== */
/* Faculty page uses unified-nav from 3-components.css */
.faculty-nav {
  margin-bottom: 50px;
}

/* ===== PRACTICE SECTIONS ===== */
.practice-section {
  margin-bottom: 80px;
  scroll-margin-top: 160px;
}

.practice-section:last-child {
  margin-bottom: 0;
}

.practice-area-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 16px;
}

.practice-description {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 40px;
}

/* ===== FACULTY GRID (Override for faculty page) ===== */
.faculty-content-section .faculty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 0;
}

/* ===== FACULTY CARDS (Faculty Page Specific) ===== */
.faculty-content-section .faculty-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: left;
}

.faculty-content-section .faculty-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faculty-content-section .faculty-card.highlighted {
  box-shadow: 0 0 0 3px #3b82f6, 0 8px 32px rgba(59, 130, 246, 0.2);
  animation: highlight-pulse 2s ease-in-out;
}

@keyframes highlight-pulse {
  0%, 100% { box-shadow: 0 0 0 3px #3b82f6, 0 8px 32px rgba(59, 130, 246, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.5), 0 8px 32px rgba(59, 130, 246, 0.3); }
}

.faculty-content-section .faculty-image-container {
  flex-shrink: 0;
  width: 180px;
}

.faculty-content-section .faculty-headshot {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faculty-content-section .faculty-info {
  flex: 1;
  min-width: 0;
}

.faculty-content-section .faculty-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.faculty-content-section .faculty-credentials {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #28528c;
  font-weight: 600;
  margin-bottom: 16px;
  font-style: normal;
}

.faculty-content-section .faculty-bio {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 20px;
  /* Override line-clamp truncation from generic .faculty-bio */
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  text-overflow: unset;
  max-height: none;
}

.faculty-content-section .faculty-bio p {
  margin-bottom: 12px;
}

.faculty-content-section .faculty-bio p:last-child {
  margin-bottom: 0;
}

/* ===== CREDENTIALS SECTION ===== */
.credentials-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.credentials-section .bar-admissions,
.credentials-section .education {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 8px;
}

.credentials-section .bar-admissions:last-child,
.credentials-section .education:last-child {
  margin-bottom: 0;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  margin-top: 24px;
}

.testimonial-card {
  position: relative;
  padding: 16px 24px;
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
  margin-bottom: 4px;
}

.testimonial-stars .stars-img {
  height: 24px;
  width: auto;
}

.testimonial-text {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  font-style: italic;
  color: #4b5563;
  line-height: 1.6;
  margin: 8px 0 12px 0;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonial-role {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #6b7280;
}

.testimonial-company {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #6b7280;
}

/* ===== FACULTY PAGE TESTIMONIAL OVERRIDES ===== */
.faculty-page .testimonial-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 24px;
  min-height: auto;
  height: auto;
  justify-content: flex-start;
  gap: 8px;
  background: #f5f3f0;
}

.faculty-page .testimonial-stars {
  order: 1;
  margin: 0;
  display: flex;
  justify-content: center;
}

.faculty-page .testimonial-text {
  order: 2;
  margin: 8px 0 12px 0;
  text-align: center;
  line-height: 1.5;
}

.faculty-page .testimonial-attribution {
  order: 3;
  align-items: center;
  margin: 0;
  gap: 2px;
}

/* ===== TEACHING PROGRAMS ===== */
.teaching-programs {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.programs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.loading-skeleton {
  color: #9ca3af;
  font-style: italic;
  font-size: 0.9rem;
}

/* Teaching Programs Header */
.teaching-programs-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.teaching-programs-title {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.teaching-programs-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background-color: #2563eb;
  border-radius: 10px;
}

/* Program Cards Container */
.programs-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Individual Program Card */
.program-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  padding: 12px 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.program-card:hover {
  border-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.program-card-name {
  flex: 1 1 200px;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
}

.program-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Program Card Actions Container */
.program-card-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* Learn More Button (outline style) */
.program-card-learn-more {
  display: inline-block;
  padding: 6px 14px;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2563eb;
  background-color: transparent;
  border: 1px solid #2563eb;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.program-card-learn-more:hover {
  background-color: #2563eb;
  color: #fff;
}

/* Register Button (filled style) */
.program-card-register {
  display: inline-block;
  padding: 6px 14px;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background-color: #2563eb;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.program-card-register:hover {
  background-color: #1d4ed8;
  color: #fff;
}

/* Mobile adjustments for program cards */
@media (max-width: 640px) {
  .program-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .program-card-name {
    flex: none;
    width: 100%;
  }

  .program-card-actions {
    width: 100%;
    margin-top: 4px;
  }

  .program-card-learn-more,
  .program-card-register {
    flex: 1;
    text-align: center;
  }
}

/* ===== FACULTY PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .faculty-page-container {
    padding: 0 24px;
  }

  .faculty-content-section .faculty-card {
    padding: 24px;
    gap: 24px;
  }

  .faculty-content-section .faculty-image-container {
    width: 150px;
  }

  .faculty-content-section .faculty-headshot {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .faculty-hero-section {
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .faculty-main-headline {
    font-size: 2.25rem;
  }

  .faculty-hero-description {
    font-size: 1.1rem;
  }

  .faculty-button-container {
    flex-direction: column;
    gap: 16px;
  }

  .faculty-button-container .btn {
    width: 100%;
    max-width: 300px;
  }

  .faculty-content-section {
    padding: 40px 0 60px;
  }

  .faculty-page-container {
    padding: 0 16px;
  }

  .practice-section {
    margin-bottom: 50px;
    scroll-margin-top: 140px;
  }

  .practice-area-title {
    font-size: 1.75rem;
  }

  .practice-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .faculty-content-section .faculty-card {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .faculty-content-section .faculty-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .faculty-content-section .faculty-headshot {
    width: 140px;
    height: 140px;
  }

  .faculty-content-section .faculty-info {
    text-align: center;
  }

  .faculty-content-section .faculty-name {
    font-size: 1.25rem;
  }

  .testimonial-section {
    padding: 16px;
  }

  .credentials-section {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .faculty-main-headline {
    font-size: 1.75rem;
  }

  .practice-area-title {
    font-size: 1.5rem;
  }
}

/* ===== ABOUT US PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-hero-section {
    padding-top: 134px;
  }

  .about-main-headline {
    font-size: 2.5rem;
  }

  .about-hero-description {
    font-size: 1.1rem;
  }

  .about-button-container {
    flex-direction: column;
    gap: 20px;
  }

  .about-button-container .btn {
    width: 100%;
    max-width: 300px;
  }

  .what-makes-different-hero {
    padding: 4rem 0 2rem;
  }

  .what-makes-different-hero .hero-container {
    padding: 0 2rem;
  }

  .what-makes-different-hero .hero-headline {
    font-size: 2.25rem;
  }

  .what-makes-different-hero .hero-subtext {
    font-size: 1rem;
  }

  .hero-testimonial-carousel {
    height: 400px;
  }

  .hero-testimonial-card {
    width: 90%;
    min-height: 300px;
  }

  .hero-testimonial-card[data-position="left"],
  .hero-testimonial-card[data-position="left2"],
  .hero-testimonial-card[data-position="right"],
  .hero-testimonial-card[data-position="right2"] {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    pointer-events: none;
  }

  .hero-testimonial-card[data-position="center"] {
    transform: translate(-50%, -50%) scale(1);
  }

  .featured-instructors {
    margin-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .instructors-row {
    gap: 2rem;
  }

  .instructor-card-mini:nth-child(1),
  .instructor-card-mini:nth-child(2),
  .instructor-card-mini:nth-child(3),
  .instructor-card-mini:nth-child(4) {
    transform: translateY(0) !important;
  }

  .instructor-card-mini:nth-child(1):hover,
  .instructor-card-mini:nth-child(2):hover,
  .instructor-card-mini:nth-child(3):hover,
  .instructor-card-mini:nth-child(4):hover {
    transform: translateY(-4px) !important;
  }

  .instructor-image-wrapper {
    width: 140px;
    height: 187px;
  }

  .president-message-section {
    padding: 115px 2rem 65px;
    min-height: auto;
  }

  .message-header {
    margin-bottom: 48px;
  }

  .message-title {
    font-size: 36px;
  }

  .typewriter-content {
    font-size: 18px;
    line-height: 1.7;
  }

  .president-signature {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .faculty-showcase-section {
    padding: 4rem 0;
  }

  .faculty-intro-wrapper {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4rem;
    padding: 50px 2rem 0;
  }

  .faculty-intro-left {
    max-width: 100%;
  }

  .faculty-intro-right {
    width: 100%;
  }

  .faculty-logos-grid {
    gap: 1rem;
    width: 100%;
    max-width: 100%;
  }

  .faculty-logo {
    height: 35px;
  }

  .faculty-main-headline {
    font-size: 2rem;
  }

  .faculty-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  }
}

@media (max-width: 480px) {
  .about-main-headline {
    font-size: 2rem;
  }

  .about-hero-description {
    font-size: 1rem;
  }

  .what-makes-different-hero .hero-container {
    padding: 0 1.5rem;
  }

  .hero-testimonial-carousel {
    height: 380px;
  }

  .hero-testimonial-card {
    padding: 1.5rem 1rem;
    min-height: 300px;
  }

  .featured-instructors {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .instructors-row {
    gap: 1.5rem;
  }

  .instructor-image-wrapper {
    width: 120px;
    height: 160px;
  }

  .president-message-section {
    padding: 115px 1.5rem 65px;
  }

  .faculty-intro-wrapper {
    padding: 50px 1.5rem 0;
  }

  .faculty-main-headline {
    font-size: 1.75rem;
  }

  .faculty-grid-4 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ===== ABOUT US PAGE REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .hero-headline-3d .line,
  .hero-subtext-animated,
  .btn-animated {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-testimonial-card {
    transition-duration: 0.01ms !important;
  }

  .hero-carousel-pagination .dot {
    transition-duration: 0.01ms !important;
  }

  .typewriter-content p {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .president-signature {
    transition: none;
  }
}

/* ===== REGISTRATION PAGE STYLES ===== */

/* Page Layout & Container */
.register-page {
  background: #f5f5f7;
  min-height: 100vh;
}

.register-header {
  background: white;
  padding: 20px 32px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.register-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.register-logo img {
  max-height: 50px;
  width: auto;
}

.register-back-link {
  color: var(--blue-primary);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 600;
  transition: all var(--transition-base);
}

.register-back-link:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.register-main {
  padding: 0;
  max-width: none;
  margin: 0;
}

/* Legacy container - kept for reference, replaced by split-container */
.register-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
}

/* ===== SPLIT-PANEL LAYOUT ===== */
.register-split-container {
  display: flex;
  min-height: calc(100vh - 100px);
  width: 100%;
}

/* Left Panel - Dynamic Messaging */
.register-left-panel {
  flex: 0 0 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: transparent;
  color: var(--gray-900);
  padding: 120px var(--space-2xl) var(--space-3xl) var(--space-4xl);
  position: relative;
  height: auto;
  min-height: 100vh;
}

.left-panel-content {
  max-width: 480px;
  width: 100%;
  animation: fadeIn 400ms ease;
}

/* Panel Headlines */
.panel-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--gray-900);
}

/* Panel Logo */
.panel-logo {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.panel-logo img {
  height: 90px;
  width: auto;
}

/* Panel Quote (Step 1) */
.panel-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  margin: 0 0 var(--space-xl) 0;
  padding: 0;
  border: none;
  color: var(--gray-900);
  text-align: center;
}

.panel-quote::before {
  display: none;
}

/* Quote Attribution */
.quote-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  margin-top: var(--space-lg);
  text-align: center;
}

.attribution-name {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--blue-primary);
}

.attribution-title,
.attribution-company {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--gray-500);
}

/* Panel Subtext */
.panel-subtext {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

/* Panel Stats (Step 2) */
.panel-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Value Stack (Step 6) */
.value-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.value-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-dark);
  border-radius: 50%;
  font-size: var(--text-sm);
  color: var(--white);
}

.value-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.5;
}

/* Right Panel - Form Card */
.register-right-panel {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  background: transparent;
  min-height: 100vh;
}

/* Form Card Container */
.register-form-card {
  width: 100%;
  max-width: 700px;
  background: var(--white);
  border: none;
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08),
              0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Stepper inside card - dot style */
.register-form-card .register-stepper {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
  padding: 0;
  background: transparent;
  box-shadow: none;
}

/* Stepper list - dots with lines */
.register-form-card .stepper-list {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
}

/* Hide step labels, show only dots */
.register-form-card .stepper-label {
  display: none;
}

/* Step item with connecting line */
.register-form-card .stepper-item {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 1;
}

/* Dot style for step number */
.register-form-card .stepper-number {
  width: 12px;
  height: 12px;
  font-size: 0;
  background: var(--gray-300);
  border: none;
}

/* Active dot - filled dark blue */
.register-form-card .stepper-item.active .stepper-number {
  background: var(--blue-dark);
  box-shadow: none;
}

/* Completed dot */
.register-form-card .stepper-item.completed .stepper-number {
  background: var(--blue-dark);
}

/* Connecting lines between dots */
.register-form-card .stepper-item:not(:last-child)::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gray-300);
  margin: 0 4px;
}

.register-form-card .stepper-item.completed:not(:last-child)::after {
  background: var(--blue-dark);
}

/* Steps inside card - remove individual card styling */
.register-form-card .register-step {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

/* Navigation inside card */
.register-form-card .register-nav {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-200);
}

/* Confirmation page full width */
.register-right-panel.confirmation-active {
  flex: 1 1 100%;
}

/* Hide left panel class */
.register-left-panel.hidden {
  display: none;
}

/* ===== SPLIT-PANEL RESPONSIVE ===== */
@media (max-width: 1024px) {
  .register-split-container {
    flex-direction: column;
    min-height: auto;
  }

  .register-left-panel {
    position: relative;
    height: auto;
    min-height: auto;
    padding: var(--space-2xl) var(--space-xl);
    flex: 0 0 auto;
    justify-content: center;
    text-align: center;
  }

  .left-panel-content {
    max-width: 100%;
  }

  .register-right-panel {
    min-height: auto;
    padding: var(--space-xl);
    flex: 0 0 auto;
  }

  .register-form-card {
    max-width: 100%;
  }

  .panel-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
  }

  .stat-item {
    flex: 1 1 30%;
    min-width: 100px;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .register-left-panel {
    padding: var(--space-xl) var(--space-lg);
  }

  .panel-headline {
    font-size: var(--text-2xl);
  }

  .panel-quote {
    font-size: var(--text-xl);
  }

  .stat-number {
    font-size: var(--text-2xl);
  }

  .register-right-panel {
    padding: var(--space-lg) var(--space-md);
  }

  .register-form-card {
    padding: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .register-left-panel {
    padding: var(--space-lg) var(--space-md);
  }

  .panel-headline {
    font-size: var(--text-xl);
  }

  .panel-quote {
    font-size: var(--text-lg);
  }

  .panel-stats {
    gap: var(--space-md);
  }

  .stat-item {
    flex: 1 1 45%;
  }

  .stat-number {
    font-size: var(--text-xl);
  }

  .value-stack {
    gap: var(--space-sm);
  }

  .value-item {
    gap: var(--space-sm);
  }

  .register-form-card {
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
  }
}

/* Progress Stepper */
.register-stepper {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.register-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.register-step {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: block;
  animation: fadeIn 300ms ease;
}

.register-step.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  margin-bottom: 32px;
}

/* ===== PRE-SELECTION SUMMARY BANNER ===== */
/* Shown when user arrives via URL deep link with pre-selected session */
.preselection-summary {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  border: 1px solid var(--blue-primary, #0066cc);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.preselection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.preselection-badge {
  background: var(--blue-primary, #0066cc);
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
}

.preselection-change-btn {
  background: transparent;
  border: 1px solid var(--blue-primary, #0066cc);
  color: var(--blue-primary, #0066cc);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preselection-change-btn:hover {
  background: var(--blue-primary, #0066cc);
  color: white;
}

.preselection-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.preselection-program {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
}

.preselection-location-dates {
  font-size: 14px;
  color: var(--gray-600);
}

.preselection-blocks {
  font-size: 13px;
  color: var(--gray-500);
  font-style: italic;
}

/* Progress Stepper List Container */
.stepper-list {
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow-x: auto;
  padding-bottom: 8px;
}

/* Individual Stepper Item */
.stepper-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 200ms ease;
}

/* Active Step */
.stepper-item.active {
  opacity: 1;
}

/* Completed Steps */
.stepper-item.completed {
  opacity: 0.7;
}

/* Step Number Circle */
.stepper-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-gray-200);
  color: var(--color-text-secondary);
  font-weight: 600;
  font-size: 14px;
  transition: all 200ms ease;
}

/* Active Step Number */
.stepper-item.active .stepper-number {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.1);
}

/* Completed Step Number */
.stepper-item.completed .stepper-number {
  background: var(--color-success);
  color: white;
}

/* Step Label Text */
.stepper-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  white-space: nowrap;
}

/* Active Step Label */
.stepper-item.active .stepper-label {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* Completed Step Label */
.stepper-item.completed .stepper-label {
  color: var(--color-text-secondary);
}

/* Mobile: Hide labels, show only numbers */
@media (max-width: 640px) {
  .stepper-label {
    display: none;
  }

  .stepper-list {
    gap: 12px;
  }
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--gray-600);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.register-step.active ~ .register-step .step-number,
.register-step:nth-child(1).active .step-number {
  background: var(--blue-primary);
  color: white;
}

.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

/* Format & Payment Option Cards */
.format-options,
.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.format-option {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: var(--space-md) var(--space-lg);
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-base);
  gap: var(--space-md);
}

.payment-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-base);
}

.format-option:hover {
  border-color: var(--gray-400);
}

.payment-option:hover {
  border-color: var(--blue-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.format-option.selected,
.payment-option.selected {
  border-color: var(--blue-primary);
  background: rgba(24, 139, 246, 0.05);
  box-shadow: 0 0 0 3px rgba(24, 139, 246, 0.1);
}

.format-icon,
.payment-icon {
  width: 64px;
  height: 64px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  transition: all var(--transition-base);
}

.format-option.selected .format-icon,
.payment-option.selected .payment-icon {
  background: var(--blue-primary);
  color: white;
}

.format-info h3,
.payment-info h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
  text-align: center;
}

.format-info p,
.payment-info p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  text-align: center;
}

input[type="radio"].format-radio,
input[type="radio"].payment-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Program Selection */
.program-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.program-card {
  position: relative;
  padding: 24px;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
}

.program-card:hover {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.program-card.selected {
  border-color: var(--blue-primary);
  background: rgba(24, 139, 246, 0.03);
  box-shadow: 0 0 0 2px rgba(24, 139, 246, 0.1);
}

.program-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 12px;
}

.program-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gray-900);
  flex: 1;
}

.program-badge {
  padding: 4px 12px;
  background: var(--gold-accent);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
  white-space: nowrap;
}

.program-description {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

input[type="radio"].program-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Session Selection */
.session-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.session-card {
  padding: 20px 24px;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.session-card:hover {
  border-color: var(--blue-primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.session-card.selected {
  border-color: var(--blue-primary);
  background: rgba(24, 139, 246, 0.05);
}

.session-info {
  flex: 1;
}

.session-date {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.session-time,
.session-location {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.session-availability {
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 6px 12px;
  background: #dcfce7;
  color: #166534;
  border-radius: 8px;
  white-space: nowrap;
}

.session-availability.limited {
  background: #fef3c7;
  color: #92400e;
}

.session-availability.full {
  background: #fee2e2;
  color: #991b1b;
}

.sessions-loading,
.sessions-empty {
  padding: 48px;
  text-align: center;
  color: var(--gray-600);
}

.sessions-empty {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--gray-300);
}

input[type="radio"].session-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Form Fields & Billing */
.billing-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-row + .form-row {
  margin-top: var(--space-lg);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-700);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  font-size: var(--text-base);
  color: var(--gray-900);
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(24, 139, 246, 0.1);
}

.form-field.error input,
.form-field.error select {
  border-color: var(--red-accent);
}

.form-field .error-message {
  font-size: var(--text-sm);
  color: var(--red-accent);
  display: none;
}

.form-field.error .error-message {
  display: block;
}

.stripe-form {
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

#card-element {
  padding: 14px;
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
}

#card-errors {
  color: var(--red-accent);
  font-size: var(--text-sm);
  margin-top: 12px;
}

/* DEPRECATED: Old Sidebar Summary - No longer used after split-panel redesign */
/* TODO: Remove these styles in a future cleanup */
.register-sidebar {
  position: sticky;
  top: 32px;
  height: fit-content;
}

.sidebar-sticky {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.summary-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.summary-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-title {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 12px;
}

.summary-label {
  font-size: var(--text-sm);
  color: var(--gray-700);
  flex: 1;
}

.summary-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-900);
  text-align: right;
}

.pricing-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-base);
  color: var(--gray-700);
}

.pricing-row.subtotal {
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
  font-weight: 600;
}

.pricing-row.discount {
  color: #059669;
}

.pricing-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 2px solid var(--gray-300);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gray-900);
}

/* Navigation Buttons */
.register-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.btn-back {
  padding: 14px 28px;
  background: white;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-back:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

.btn-next,
.btn-submit {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--blue-primary), #0052a3);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(24, 139, 246, 0.3);
}

.btn-next:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 139, 246, 0.4);
}

.btn-next:disabled,
.btn-submit:disabled {
  background: var(--gray-300);
  color: var(--gray-500);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-submit {
  background: linear-gradient(135deg, var(--red-accent), #b91c1c);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-submit:hover {
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Confirmation Page */
.confirmation-content {
  text-align: center;
  padding: 48px 32px;
}

.confirmation-icon-success {
  width: 80px;
  height: 80px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: scaleIn 400ms ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-icon-success svg {
  width: 48px;
  height: 48px;
  color: white;
}

.confirmation-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.confirmation-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  margin-bottom: 32px;
}

.confirmation-summary-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
  text-align: left;
}

.confirmation-next-steps {
  background: rgba(24, 139, 246, 0.05);
  border-left: 4px solid var(--blue-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
  text-align: left;
}

.confirmation-next-steps h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.confirmation-next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.confirmation-next-steps li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--gray-700);
}

.confirmation-next-steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-primary);
  font-weight: 700;
}

/* Loading States */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-overlay.hidden {
  display: none;
}

.loading-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-2xl);
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--blue-primary);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-message {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-700);
}

/* Global Messages & Alerts */
.global-message {
  position: fixed;
  top: 24px;
  right: 24px;
  max-width: 400px;
  padding: 20px 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  animation: slideInRight 300ms ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.global-message.success {
  border-left: 4px solid #10b981;
}

.global-message.error {
  border-left: 4px solid var(--red-accent);
}

.global-message.info {
  border-left: 4px solid var(--blue-primary);
}

.message-content {
  display: flex;
  align-items: start;
  gap: 12px;
}

.message-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.message-text h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 4px;
  margin-top: 0;
}

.message-text p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .register-container {
    grid-template-columns: 1fr;
  }

  /* DEPRECATED: Old sidebar responsive rules */
  .register-sidebar {
    position: static;
    order: -1;
  }

  /* .register-main padding handled by split-panel layout */

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

  .format-options,
  .payment-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .register-header {
    padding: 16px 20px;
  }

  /* .register-main padding handled by split-panel layout */

  .register-step {
    padding: 24px 20px;
  }

  .step-title {
    font-size: var(--text-2xl);
  }

  .register-stepper {
    flex-wrap: wrap;
  }

  .register-nav {
    flex-direction: column;
    gap: 12px;
  }

  .btn-back,
  .btn-next,
  .btn-submit {
    width: 100%;
  }

  .sidebar-sticky {
    padding: 24px 20px;
  }

  .pricing-total {
    font-size: var(--text-xl);
  }

  .confirmation-title {
    font-size: var(--text-3xl);
  }

  .gap-48 {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .register-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
  }

  .register-back-link {
    font-size: var(--text-sm);
  }

  /* .register-main padding handled by split-panel layout */

  .step-title {
    font-size: var(--text-xl);
  }

  .step-subtitle {
    font-size: var(--text-base);
  }

  .register-stepper {
    padding: 16px 12px;
    gap: 8px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: var(--text-xs);
  }

  .format-option,
  .payment-option {
    padding: 24px 16px;
  }

  .format-icon,
  .payment-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .format-info h3,
  .payment-info h3 {
    font-size: var(--text-lg);
  }

  .program-card,
  .session-card {
    padding: 16px 12px;
  }

  .form-row {
    gap: 16px;
  }

  .form-field input,
  .form-field select {
    font-size: 16px;
  }

  #card-element {
    padding: 12px 14px;
    font-size: 16px;
  }

  .confirmation-title {
    font-size: var(--text-2xl);
  }

  .confirmation-icon-success {
    width: 64px;
    height: 64px;
  }

  .confirmation-icon-success svg {
    width: 40px;
    height: 40px;
  }

  .global-message {
    max-width: calc(100% - 32px);
    right: 16px;
    left: 16px;
  }
}

@media (max-width: 375px) {
  .register-header {
    gap: 8px;
  }

  .register-logo img {
    max-height: 40px;
  }

  .register-main {
    padding: var(--space-lg) var(--space-sm);
  }

  .step-title {
    font-size: var(--text-lg);
  }

  .register-nav {
    padding-top: 20px;
    margin-top: 20px;
  }

  .sidebar-sticky {
    padding: 20px 16px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }
}

/* ========================================
   NEW MULTI-STEP REGISTRATION STYLES
   ======================================== */

/* Step Container */
.register-steps {
  flex: 1;
}

.register-step {
  animation: fadeIn 0.3s ease-in;
}

.register-step.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   FORMAT SELECTION STYLES
   ======================================== */

.format-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.format-option {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: white;
  transition: all 0.2s ease;
  gap: var(--space-md);
}

.format-option:hover {
  border-color: var(--gray-400);
}

.format-option:has(input[type="radio"]:checked) {
  border-color: var(--blue-primary);
  background: #f0f7ff;
}

.format-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  margin: 0;
}

.format-option input[type="radio"]:checked {
  border-color: var(--blue-primary);
}

.format-option input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--blue-primary);
  border-radius: 50%;
}

.format-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-md);
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
}

.format-card .format-info {
  display: flex;
  align-items: center;
  text-align: left;
}

.format-option input[type="radio"]:checked + .format-card {
  /* Styles now on parent .format-option */
}

.format-icon {
  display: none;
}

.format-card strong,
.format-card .format-info strong {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--gray-900);
  text-align: left;
}

/* Hide description span */
.format-card span {
  display: none;
  color: var(--color-muted);
}

/* ========================================
   PROGRAM SELECTION STYLES
   ======================================== */

.program-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.program-option {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: white;
  transition: all 0.2s ease;
  gap: var(--space-md);
}

.program-option:hover {
  border-color: var(--gray-400);
}

.program-option:has(input[type="radio"]:checked) {
  border-color: var(--blue-primary);
  background: #f0f7ff;
}

.program-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  margin: 0;
}

.program-option input[type="radio"]:checked {
  border-color: var(--blue-primary);
}

.program-option input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--blue-primary);
  border-radius: 50%;
}

.program-name {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--gray-900);
}

/* ========================================
   SESSION SELECTION STYLES
   ======================================== */

.session-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.session-option {
  cursor: pointer;
}

.session-option input[type="radio"] {
  display: none;
}

.session-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: white;
}

.session-option input[type="radio"]:checked + .session-card {
  border-color: var(--color-primary);
  background: #f0f9ff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.session-option:hover .session-card {
  border-color: var(--color-primary);
}

.session-dates {
  font-weight: 600;
  color: var(--color-dark);
}

.session-location {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.sessions-loading,
.sessions-empty {
  padding: var(--space-lg);
  text-align: center;
  color: var(--color-muted);
}

.sessions-loading.hidden,
.sessions-empty.hidden {
  display: none;
}

/* ========================================
   BLOCKS SELECTION STYLES
   ======================================== */

.blocks-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

/* Full Program Option */
.block-selection-option {
  display: flex;
}

.block-selection-radio {
  display: block;
  width: 100%;
  cursor: pointer;
}

.block-selection-radio input[type="radio"] {
  display: none;
}

.full-program-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: white;
  transition: all 0.2s ease;
}

.block-selection-radio input[type="radio"]:checked + .full-program-card {
  border-color: var(--blue-primary);
  background: #f0f7ff;
  box-shadow: 0 0 0 3px rgba(24, 139, 246, 0.1);
}

.full-program-card:hover {
  border-color: var(--gray-400);
}

.block-selection-radio input[type="radio"]:checked + .full-program-card:hover {
  border-color: var(--blue-primary);
}

.block-selection-indicator {
  width: 24px;
  height: 24px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

.block-selection-radio input[type="radio"]:checked + .full-program-card .block-selection-indicator {
  border-color: var(--blue-primary);
}

.block-selection-radio input[type="radio"]:checked + .full-program-card .block-selection-indicator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--blue-primary);
  border-radius: 50%;
}

.block-selection-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.block-selection-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.block-selection-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-900);
}

.block-selection-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--blue-primary);
  background: rgba(24, 139, 246, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.block-selection-meta {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.block-selection-price {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--blue-primary);
  flex-shrink: 0;
}

/* Divider */
.block-selection-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-sm) 0;
}

.block-selection-divider::before,
.block-selection-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.block-selection-divider span {
  font-size: var(--text-sm);
  color: var(--gray-500);
  white-space: nowrap;
}

/* Individual Blocks List */
.individual-blocks-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.individual-block-item {
  display: flex;
}

.individual-block-label {
  display: block;
  width: 100%;
  cursor: pointer;
}

.individual-block-label input[type="checkbox"] {
  display: none;
}

.individual-block-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: white;
  transition: all 0.2s ease;
}

.individual-block-label input[type="checkbox"]:checked + .individual-block-card {
  border-color: var(--blue-primary);
  background: #f0f7ff;
  box-shadow: 0 0 0 3px rgba(24, 139, 246, 0.1);
}

.individual-block-card:hover {
  border-color: var(--gray-400);
}

.individual-block-label input[type="checkbox"]:checked + .individual-block-card:hover {
  border-color: var(--blue-primary);
}

/* Disabled state for non-consecutive blocks */
.individual-block-label input[type="checkbox"]:disabled + .individual-block-card {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: var(--gray-200);
  background: var(--gray-50);
}

.individual-block-label input[type="checkbox"]:disabled + .individual-block-card:hover {
  border-color: var(--gray-200);
}

.individual-block-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.individual-block-label input[type="checkbox"]:checked + .individual-block-card .individual-block-checkbox {
  border-color: var(--blue-primary);
  background: var(--blue-primary);
}

.individual-block-label input[type="checkbox"]:checked + .individual-block-card .individual-block-checkbox::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.individual-block-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.individual-block-name {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-900);
}

.individual-block-order {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.individual-block-price {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--blue-primary);
  flex-shrink: 0;
}

/* ========================================
   ORDER SUMMARY STYLES
   ======================================== */

.order-summary {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.order-summary-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 var(--space-md) 0;
}

.order-summary-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
}

.order-label {
  color: var(--gray-600);
  font-size: var(--text-sm);
}

.order-value {
  color: var(--gray-900);
  font-weight: 500;
  text-align: right;
  max-width: 60%;
}

.order-summary-divider {
  height: 1px;
  background: var(--gray-200);
  margin: var(--space-sm) 0;
}

.order-summary-row.discount-row .order-value {
  color: #16a34a;
}

.order-summary-row.total-row {
  padding-top: var(--space-xs);
}

.order-summary-row.total-row .order-label,
.order-summary-row.total-row .order-value {
  font-size: var(--text-lg);
  font-weight: 600;
}

.order-summary-row.total-row .order-value {
  color: var(--gray-900);
}

.order-summary-row.hidden,
.order-summary-divider.hidden {
  display: none;
}

/* ========================================
   PAYMENT METHOD SELECTION STYLES
   ======================================== */

.payment-method-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.payment-method-option {
  cursor: pointer;
}

.payment-method-option input[type="radio"] {
  display: none;
}

.payment-method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-align: center;
  background: white;
  cursor: pointer;
}

.payment-method-option input[type="radio"]:checked + .payment-method-card {
  border-color: var(--color-primary);
  background: #f0f9ff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.payment-method-option:hover .payment-method-card {
  border-color: var(--color-primary);
}

.payment-icon {
  color: var(--gray-400);
  margin-bottom: var(--space-sm);
}

.payment-icon svg {
  display: block;
}

.payment-title {
  display: block;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-900);
  text-align: center;
}

.payment-description {
  display: block;
  font-size: var(--text-sm);
  color: var(--gray-500);
  text-align: center;
}

/* Invoice & Stripe Forms */
.invoice-form,
.stripe-payment-form {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: #f9fafb;
  border-radius: 8px;
}

.invoice-form.hidden,
.stripe-payment-form.hidden {
  display: none;
}

.stripe-card-element {
  padding: var(--space-md);
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: white;
  margin-bottom: var(--space-md);
}

.stripe-card-element .StripeElement {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  background: color-mix(in srgb, #fff 98%, transparent);
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

.stripe-card-element .StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
  border-color: 3498db;
}

.stripe-card-element .StripeElement--invalid {
  border-color: #fa755a;
}

.stripe-errors {
  color: #fa755a;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-md);
  min-height: 20px;
}

.form-section-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

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

/* ========================================
   CONFIRMATION PAGE STYLES
   ======================================== */

.confirmation-content {
  text-align: center;
  animation: fadeIn 0.3s ease-in;
}

.confirmation-icon-success {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  color: #10b981;
}

.confirmation-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.confirmation-subtitle {
  font-size: var(--text-lg);
  color: var(--color-muted);
  margin-bottom: var(--space-xl);
}

.confirmation-summary-box {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.confirmation-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid #e5e7eb;
}

.confirmation-summary-header h3 {
  margin: 0;
  font-size: var(--text-lg);
  color: var(--color-dark);
}

.confirmation-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
}

.detail-row .label {
  font-weight: 500;
  color: var(--color-muted);
}

.detail-row .value {
  color: var(--color-dark);
  font-weight: 600;
}

.confirmation-calendar {
  margin: var(--space-lg) 0;
}

.btn-calendar {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: var(--space-md) var(--space-lg);
  border-radius: 6px;
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-calendar:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.confirmation-next-steps {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.confirmation-next-steps h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.next-step {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  background: white;
  border-left: 4px solid #e5e7eb;
  border-radius: 4px;
}

.next-step.urgent {
  border-left-color: #10b981;
  background: #f0fdf4;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  width: 40px;
  height: 40px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.next-step.urgent .step-number {
  background: #10b981;
}

.step-content h4 {
  margin: 0 0 var(--space-sm);
  color: var(--color-dark);
}

.step-content p {
  margin: var(--space-sm) 0;
  color: var(--color-muted);
}

.check-email-box {
  background: white;
  padding: var(--space-md);
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  margin: var(--space-md) 0;
  text-align: left;
  font-size: var(--text-sm);
  color: var(--color-dark);
  line-height: 1.6;
}

.confirmation-help {
  background: #f9fafb;
  padding: var(--space-lg);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

.confirmation-help p {
  margin: var(--space-sm) 0;
  color: var(--color-dark);
}

.confirmation-help a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.confirmation-help a:hover {
  text-decoration: underline;
}

/* ========================================
   SIDEBAR STYLES
   ======================================== */

.register-sidebar {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: var(--space-lg);
  height: fit-content;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: var(--space-lg);
  margin-left: var(--space-xl);
}

.sidebar-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.sidebar-section {
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.sidebar-label {
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-weight: 500;
}

.sidebar-value {
  font-weight: 600;
  color: var(--color-dark);
  text-align: right;
}

.sidebar-divider {
  height: 1px;
  background: #e5e7eb;
  margin: var(--space-md) 0;
}

.sidebar-section.pricing {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: 0;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  padding: var(--space-sm) 0;
}

.pricing-row.total {
  border-top: 2px solid #e5e7eb;
  padding-top: var(--space-md);
  padding-bottom: 0;
  font-weight: 700;
  font-size: var(--text-base);
}

.pricing-label {
  color: var(--color-muted);
}

.pricing-value {
  color: var(--color-dark);
  font-weight: 600;
  text-align: right;
}

.pricing-value.discount {
  color: #10b981;
}

/* ========================================
   ERROR & LOADING STYLES
   ======================================== */

.error-banner {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 6px;
  padding: var(--space-md) var(--space-lg);
  color: #991b1b;
  z-index: 1000;
  max-width: calc(100% - 40px);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: slideDown 0.3s ease;
}

.error-banner.hidden {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.error-close {
  background: none;
  border: none;
  color: #991b1b;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.error-close:hover {
  color: #7f1d1d;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.loading-overlay.hidden {
  display: none;
}

.loading-spinner {
  background: white;
  padding: var(--space-xl);
  border-radius: 8px;
  text-align: center;
}

.loading-spinner .spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-md);
  border: 3px solid #e5e7eb;
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   FORM STYLES
   ======================================== */

.contact-form,
.coupon-field {
  margin-top: var(--space-lg);
}

.coupon-input-row {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.coupon-input-row input {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: var(--text-base);
}

.coupon-input-row input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-coupon {
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-coupon:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.coupon-message {
  display: block;
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-muted);
  min-height: 20px;
}

.coupon-message.visible {
  color: #10b981;
  font-weight: 600;
}

.coupon-message.success {
  color: #10b981;
  font-weight: 600;
  display: block;
}

.coupon-message.error {
  color: #dc2626;
  font-weight: 600;
  display: block;
}

.field-error {
  display: none;
  font-size: var(--text-sm);
  color: #dc2626;
  margin-top: 4px;
}

.field-error.visible {
  display: block;
}

/* ========================================
   STEPPER STYLES
   ======================================== */

.register-stepper {
  margin-bottom: var(--space-xl);
}

.stepper-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.stepper-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.stepper-item.active {
  opacity: 1;
}

.stepper-item.completed {
  opacity: 0.7;
}

.stepper-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #e5e7eb;
  color: var(--color-muted);
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--text-sm);
  transition: all 0.2s ease;
}

.stepper-item.active .stepper-number {
  background: var(--color-primary);
  color: white;
}

.stepper-item.completed .stepper-number {
  background: #10b981;
  color: white;
}

.stepper-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-muted);
  white-space: nowrap;
}

.stepper-item.active .stepper-label {
  color: var(--color-dark);
}

/* ========================================
   NAVIGATION BUTTONS
   ======================================== */

.register-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  margin-top: var(--space-xl);
  border-top: 1px solid #e5e7eb;
}

.nav-spacer {
  flex: 1;
}

.btn {
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: 6px;
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}


.btn-secondary {
  background: #e5e7eb;
  color: var(--color-dark);
}

.btn-secondary:hover {
  background: #d1d5db;
}

.register-nav .btn {
  transition: opacity 0.3s ease, transform 0.2s ease;
}

/* ========================================
   TABLET RESPONSIVE (768px and up)
   ======================================== */

@media (min-width: 768px) {
  .format-options,
  .payment-method-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .stepper-list {
    gap: var(--space-xl);
  }

  .stepper-label {
    display: inline;
  }
}

/* ========================================
   MOBILE RESPONSIVE (< 768px)
   ======================================== */

@media (max-width: 767px) {
  .register-container {
    flex-direction: column;
  }

  .register-form-column {
    width: 100%;
  }

  .register-sidebar {
    margin-left: 0;
    margin-top: var(--space-lg);
    position: static;
    top: auto;
  }

  .format-options,
  .payment-method-options {
    grid-template-columns: 1fr;
  }

  .stepper-list {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .stepper-item {
    gap: var(--space-sm);
  }

  .stepper-label {
    font-size: var(--text-sm);
  }

  .stepper-number {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  /* Vertical stepper for mobile */
  .register-stepper {
    margin-bottom: var(--space-lg);
  }

  .stepper-list {
    border-left: 2px solid #e5e7eb;
    padding-left: var(--space-md);
    margin-left: var(--space-md);
  }

  .stepper-item {
    position: relative;
    padding: var(--space-sm) 0;
  }

  .stepper-item::before {
    content: '';
    position: absolute;
    left: -19px;
    top: 0;
    width: 14px;
    height: 2px;
    background: #e5e7eb;
  }

  .stepper-item.active::before,
  .stepper-item.completed::before {
    background: var(--color-primary);
  }

  .register-nav {
    flex-wrap: wrap;
  }

  .btn {
    flex: 1;
    min-width: 120px;
  }

  .nav-spacer {
    width: 100%;
  }

  .confirmation-summary-box {
    padding: var(--space-md);
  }

  .confirmation-summary-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .format-badge {
    align-self: flex-start;
  }

  .next-step {
    flex-direction: column;
    gap: var(--space-md);
  }

  .step-number {
    width: 36px;
    height: 36px;
  }
}

/* ========================================
   SESSION CARDS - FACULTY DISPLAY
   ======================================== */

/* Make session-content the positioning context for faculty */
.session-content {
  position: relative;
}

/* Position faculty section on the right without affecting left side */
.session-faculty {
  position: absolute;
  top: 0;
  right: 20px;
  padding-left: 20px;
  max-width: 300px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ensure left side has no borders */
.session-main-info {
  border: none !important;
  border-left: none !important;
  border-right: none !important;
}

.session-faculty .faculty-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faculty-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faculty-member {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.faculty-member .faculty-name {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  padding: 0;
  transition: color 0.2s ease;
}

.faculty-member .faculty-name:hover {
  color: var(--blue-primary);
  text-decoration: underline;
}

.faculty-title-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/* Responsive adjustments for session content */
@media (max-width: 768px) {
  .session-faculty {
    position: static;
    max-width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-top: 20px;
    margin-top: 20px;
  }
}

/* ========================================
   SMALL MOBILE (< 480px)
   ======================================== */

@media (max-width: 479px) {
  .register-main {
    padding: var(--space-md);
  }

  .register-sidebar {
    margin-top: var(--space-md);
    padding: var(--space-md);
  }

  .stepper-list {
    padding-left: 0;
    border-left: none;
    gap: var(--space-sm);
  }

  .stepper-item {
    padding: var(--space-sm) 0;
  }

  .stepper-item::before {
    display: none;
  }

  .step-title {
    font-size: var(--text-xl);
  }

  .step-subtitle {
    font-size: var(--text-base);
  }

  .format-card,
  .program-card,
  .session-card,
  .payment-method-card {
    padding: var(--space-md);
  }

  .confirmation-title {
    font-size: var(--text-2xl);
  }

  .confirmation-icon-success {
    width: 64px;
    height: 64px;
  }

  .confirmation-icon-success svg {
    width: 32px;
    height: 32px;
  }

  .btn {
    font-size: var(--text-sm);
    padding: var(--space-sm) var(--space-md);
  }

  .register-nav {
    gap: var(--space-sm);
  }
}

/* ============================================================================
   PROGRAM SCHEDULE V2 - THREE LAYOUT VERSIONS
   ============================================================================ */

/* ==========================================================================
   VERSION A: MINIMAL ROWS (Square-Style)
   ========================================================================== */
.schedule-v2a-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.schedule-v2a-filters {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  padding: var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.schedule-v2a-filter {
  padding: 8px 28px 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-md);
  background: #fff;
  font-size: var(--text-sm);
  color: var(--blue-dark);
  cursor: pointer;
  min-width: 140px;
}

.schedule-v2a-filter:hover {
  border-color: var(--blue-dark);
}

.schedule-v2a-clear {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.schedule-v2a-clear:hover {
  background: var(--gray-100);
}

.schedule-v2a-list {
  display: flex;
  flex-direction: column;
}

.schedule-v2a-row {
  display: grid;
  grid-template-columns: 350px 1fr 160px;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}

.schedule-v2a-row:last-child {
  border-bottom: none;
}

/* Column 1: Image + Program Info */
.schedule-v2a-col-image {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.schedule-v2a-thumbnail {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.schedule-v2a-program-info {
  flex: 1;
  min-width: 0;
}

.schedule-v2a-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 var(--space-xs) 0;
  line-height: 1.3;
}

.schedule-v2a-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.schedule-v2a-format {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.schedule-v2a-format.in-person {
  background: var(--blue-primary);
  color: #fff;
}

.schedule-v2a-format.virtual {
  background: #10b981;
  color: #fff;
}

/* Column 2: Blocks */
.schedule-v2a-col-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.schedule-v2a-block {
  display: grid;
  grid-template-columns: 60px 1fr 100px 180px;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.schedule-v2a-block:last-child {
  border-bottom: none;
}

.schedule-v2a-block-label {
  font-weight: 700;
  color: var(--gold-accent);
}

.schedule-v2a-block-title {
  color: var(--gray-900);
}

.schedule-v2a-block-days {
  color: var(--gray-500);
}

.schedule-v2a-block-instructor {
  color: var(--gray-500);
  font-style: italic;
}

/* Column 3: Action */
.schedule-v2a-col-action {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.schedule-v2a-btn-learn {
  padding: var(--space-sm) var(--space-lg);
  background: transparent;
  border: 2px solid var(--blue-primary);
  border-radius: var(--radius-md);
  color: var(--blue-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.schedule-v2a-btn-learn:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #fff;
}

/* Version A Mobile */
@media (max-width: 1024px) {
  .schedule-v2a-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .schedule-v2a-col-image {
    flex-direction: column;
  }

  .schedule-v2a-thumbnail {
    width: 100%;
    height: 180px;
  }

  .schedule-v2a-block {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border-bottom: none;
    margin-bottom: var(--space-xs);
  }

  .schedule-v2a-col-action {
    justify-content: stretch;
  }

  .schedule-v2a-btn-learn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .schedule-v2a-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .schedule-v2a-filter {
    width: 100%;
  }
}

/* ===== PROGRAM SCHEDULE FILTER NAV ===== */
/* Uses unified-nav from 3-components.css with page-specific overrides */

.ps-filter-nav {
  margin-bottom: 40px;
}

.ps-filter-nav .ps-filter-container {
  justify-content: center;
  gap: 16px;
}

.ps-filter-nav .unified-nav-select {
  min-width: 150px;
}

@media (max-width: 900px) {
  .ps-filter-nav .ps-filter-container {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .ps-filter-nav .ps-filter-container {
    gap: 8px;
  }

  .ps-filter-nav .unified-nav-select {
    min-width: 100%;
    flex: 1 1 100%;
  }
}

/* ==========================================================================
   VERSION B: CARD-ROW HYBRID (Visual Prominence)
   ========================================================================== */
.schedule-v2b-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px var(--space-lg) 0;
}

.schedule-v2b-filters {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  padding: var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.schedule-v2b-filter {
  padding: 8px 28px 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-md);
  background: #fff;
  font-size: var(--text-sm);
  color: var(--blue-dark);
  cursor: pointer;
  min-width: 140px;
}

.schedule-v2b-filter:hover {
  border-color: var(--blue-dark);
}

.schedule-v2b-clear {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  color: var(--gray-700);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.schedule-v2b-clear:hover {
  background: var(--gray-100);
}

.schedule-v2b-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding-bottom: 200px;
}

.schedule-v2b-card-row {
  display: grid;
  grid-template-columns: 280px 1fr 180px;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.schedule-v2b-card-row:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Image Column */
.schedule-v2b-image-col {
  position: relative;
}

.schedule-v2b-hero-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.schedule-v2b-image-overlay {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
}

.schedule-v2b-format-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.schedule-v2b-format-badge.in-person {
  background: var(--blue-dark);
  color: #fff;
}

.schedule-v2b-format-badge.virtual {
  background: #10b981;
  color: #fff;
}

/* Info Column */
.schedule-v2b-info-col {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.schedule-v2b-header {
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: var(--space-md);
}

.schedule-v2b-program-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.schedule-v2b-dates-location {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.schedule-v2b-dates-location time {
  font-weight: 600;
  color: var(--blue-dark);
}

.schedule-v2b-location-venue {
  display: block;
  margin-top: var(--space-xs);
}

/* Block Grid */
.schedule-v2b-blocks-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Program Description (for non-block programs) */
.schedule-v2b-program-description {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
  padding: var(--space-md) 0;
}

/* Blocks Footnote */
.schedule-v2b-blocks-footnote {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--gray-500);
  margin: var(--space-sm) 0 0 0;
}

.schedule-v2b-block-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--blue-dark);
}

.schedule-v2b-block-number {
  width: 28px;
  height: 28px;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.schedule-v2b-block-content {
  flex: 1;
  min-width: 0;
}

.schedule-v2b-block-title {
  font-weight: 600;
  color: var(--gray-900);
  font-size: var(--text-sm);
  margin: 0;
}

.schedule-v2b-block-meta {
  display: flex;
  gap: var(--space-lg);
  font-size: var(--text-xs);
  color: var(--gray-600);
  margin-top: var(--space-xs);
}

/* Action Column */
.schedule-v2b-action-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  background: var(--gray-50);
  border-left: 1px solid var(--gray-200);
}

.schedule-v2b-learn-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1e3a5f 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.schedule-v2b-learn-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(40, 82, 140, 0.4);
}

/* Version B Mobile */
@media (max-width: 1024px) {
  .schedule-v2b-card-row {
    grid-template-columns: 1fr;
  }

  .schedule-v2b-hero-image {
    height: 200px;
    min-height: auto;
  }

  .schedule-v2b-action-col {
    border-left: none;
    border-top: 1px solid var(--gray-200);
    padding: var(--space-lg);
  }

  .schedule-v2b-learn-btn {
    width: 100%;
    justify-content: center;
  }

  .schedule-v2b-block-meta {
    flex-direction: column;
    gap: var(--space-xs);
  }
}

@media (max-width: 768px) {
  .schedule-v2b-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .schedule-v2b-filter {
    width: 100%;
  }

  .schedule-v2b-info-col {
    padding: var(--space-lg);
  }

  .schedule-v2b-program-title {
    font-size: var(--text-xl);
  }
}

/* ==========================================================================
   VERSION C: TABLE-LIKE STRUCTURED LAYOUT
   ========================================================================== */
.schedule-v2c-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.schedule-v2c-filters {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  padding: var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.schedule-v2c-filter {
  padding: 8px 28px 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-md);
  background: #fff;
  font-size: var(--text-sm);
  color: var(--blue-dark);
  cursor: pointer;
  min-width: 140px;
}

.schedule-v2c-filter:hover {
  border-color: var(--blue-dark);
}

.schedule-v2c-clear {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  color: var(--gray-700);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.schedule-v2c-clear:hover {
  background: var(--gray-100);
}

.schedule-v2c-table {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.schedule-v2c-header-row {
  display: grid;
  grid-template-columns: 340px 1fr 160px;
  background: var(--blue-dark);
  color: var(--white);
}

.schedule-v2c-th {
  padding: var(--space-md) var(--space-lg);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.schedule-v2c-tbody {
  display: flex;
  flex-direction: column;
}

.schedule-v2c-tr {
  display: grid;
  grid-template-columns: 340px 1fr 160px;
  border-bottom: 1px solid var(--gray-200);
  align-items: stretch;
}

.schedule-v2c-tr:nth-child(even) {
  background: var(--gray-50);
}

.schedule-v2c-tr:last-child {
  border-bottom: none;
}

.schedule-v2c-td {
  padding: var(--space-lg);
}

/* Program Cell */
.schedule-v2c-program-cell {
  display: flex;
  gap: var(--space-md);
}

.schedule-v2c-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.schedule-v2c-program-details {
  flex: 1;
  min-width: 0;
}

.schedule-v2c-name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 var(--space-xs) 0;
  line-height: 1.3;
}

.schedule-v2c-meta-row {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
}

.schedule-v2c-dates {
  font-weight: 600;
  color: var(--blue-dark);
}

.schedule-v2c-format {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.schedule-v2c-format.in-person {
  background: var(--blue-dark);
  color: #fff;
}

.schedule-v2c-format.virtual {
  background: #10b981;
  color: #fff;
}

.schedule-v2c-location-row {
  font-size: var(--text-xs);
  color: var(--gray-500);
}

.schedule-v2c-venue {
  font-style: italic;
}

/* Blocks Cell */
.schedule-v2c-blocks-cell {
  padding: var(--space-md) var(--space-lg);
}

.schedule-v2c-blocks-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.schedule-v2c-blocks-table th {
  text-align: left;
  padding: var(--space-xs) var(--space-sm);
  border-bottom: 2px solid var(--gray-300);
  font-weight: 600;
  color: var(--gray-600);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.schedule-v2c-blocks-table td {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
}

.schedule-v2c-blocks-table tr:last-child td {
  border-bottom: none;
}

.schedule-v2c-block-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--text-xs);
}

/* Action Cell */
.schedule-v2c-action-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
}

.schedule-v2c-learn-btn {
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1e3a5f 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.schedule-v2c-learn-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(40, 82, 140, 0.3);
}

/* Version C Mobile */
@media (max-width: 1024px) {
  .schedule-v2c-header-row {
    display: none;
  }

  .schedule-v2c-tr {
    grid-template-columns: 1fr;
    padding: var(--space-md);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-bottom: none;
  }

  .schedule-v2c-td {
    padding: 0;
  }

  .schedule-v2c-program-cell {
    flex-direction: column;
  }

  .schedule-v2c-thumb {
    width: 100%;
    height: 150px;
  }

  .schedule-v2c-action-cell {
    background: transparent;
    padding-top: var(--space-md);
  }

  .schedule-v2c-learn-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .schedule-v2c-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .schedule-v2c-filter {
    width: 100%;
  }

  .schedule-v2c-blocks-table thead {
    display: none;
  }

  .schedule-v2c-blocks-table tr {
    display: block;
    padding: var(--space-sm);
    border-left: 3px solid var(--blue-dark);
    margin-bottom: var(--space-sm);
    background: var(--gray-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  }

  .schedule-v2c-blocks-table td {
    display: block;
    padding: var(--space-xs) 0;
    border: none;
  }

  .schedule-v2c-blocks-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--gray-500);
    font-size: var(--text-xs);
    display: block;
    margin-bottom: 2px;
  }
}

/* ==========================================================================
   SHARED V2 STYLES
   ========================================================================== */
.schedule-v2-empty {
  text-align: center;
  padding: var(--space-3xl);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-lg);
}

.schedule-v2-loading {
  text-align: center;
  padding: var(--space-3xl);
  color: rgba(255, 255, 255, 0.7);
}

.schedule-v2-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--space-md);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .schedule-v2b-card-row,
  .schedule-v2b-learn-btn,
  .schedule-v2a-btn-learn,
  .schedule-v2c-learn-btn {
    transition: none;
  }

  .schedule-v2-loading-spinner {
    animation: none;
  }
}

/* ==========================================================================
   CORPORATE TRAINING PAGE STYLES
   ========================================================================== */

/* ===== CT HERO SECTION ===== */
.ct-hero-wrapper {
  width: 100%;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 20px 80px;
}

.ct-hero {
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.ct-trusted-text {
  color: #188bf6;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.ct-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.ct-description {
  font-family: "Lato", sans-serif;
  font-size: clamp(1.0625rem, 1.7vw, 1.3125rem);
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.ct-button-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== CT BENEFITS SECTION ===== */
.ct-benefits-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.ct-benefits-headline {
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  margin-bottom: 16px;
}

.ct-benefits-subheadline {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.ct-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.ct-benefit-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ct-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.ct-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.ct-card-header i {
  font-size: 1.5rem;
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 4px;
}

.ct-card-headline {
  font-family: "Playfair Display", serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}

.ct-card-body {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* ===== CT HOW IT WORKS SECTION ===== */
.ct-how-it-works {
  background: #f8fafc;
  padding: 80px 20px;
}

.ct-hiw-headline-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.ct-hiw-title {
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
}

.ct-hiw-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}

.ct-hiw-cta-container {
  display: flex;
  justify-content: center;
}

.ct-hiw-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #188bf6;
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(24, 139, 246, 0.3);
}

.ct-hiw-cta-button:hover {
  color: white;
  background: #1478d1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 139, 246, 0.4);
}

.ct-hiw-cta-button svg {
  width: 20px;
  height: 20px;
}

/* ===== CT HORIZONTAL LAYOUT (How It Works Steps) ===== */
.ct-horizontal-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.ct-horizontal-layout {
  display: flex;
  gap: 40px;
}

/* Side Navigation */
.ct-side-navigation {
  display: none;
  flex-direction: column;
  gap: 8px;
  min-width: 280px;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.ct-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}

.ct-nav-item:hover {
  border-color: #3b82f6;
  background: #f0f7ff;
}

.ct-nav-item.active {
  border-color: #3b82f6;
  background: #3b82f6;
  color: white;
}

.ct-nav-step-number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #4b5563;
  border-radius: 50%;
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ct-nav-item.active .ct-nav-step-number {
  background: white;
  color: #3b82f6;
}

.ct-nav-step-title {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

.ct-nav-item.active .ct-nav-step-title {
  color: white;
}

/* Content Area */
.ct-content-area {
  flex: 1;
}

.ct-step-content-panel {
  display: none;
}

.ct-step-content-panel.active {
  display: block;
}

.ct-content-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.ct-content-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
}

.ct-content-step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ct-content-step-title {
  font-family: "Playfair Display", serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.ct-content-body {
  padding: 32px;
}

.ct-content-section {
  margin-bottom: 24px;
}

.ct-content-section:last-child {
  margin-bottom: 0;
}

.ct-content-label {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.ct-content-text {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.ct-content-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ct-content-list li {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.ct-content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
}

/* Delivery Options */
.ct-delivery-option {
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.ct-delivery-option:last-of-type {
  margin-bottom: 24px;
}

.ct-delivery-title {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.ct-best-for {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3b82f6;
  font-style: italic;
}

/* ===== CT PROGRAMS SECTION ===== */
.ct-programs-section {
  background: var(--black);
  padding: 80px 20px;
}

.ct-programs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ct-programs-headline {
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 16px;
}

.ct-programs-subheadline {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Edge fade gradient mask on carousel track */
#ct-programs-splide .splide__track {
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Non-active slides: blurry and faded */
#ct-programs-splide .splide__slide {
  opacity: 0.5;
  filter: blur(2px);
  transform: scale(0.95);
  transition: all 0.4s ease;
}

/* Active/center slide: clear and prominent */
#ct-programs-splide .splide__slide.is-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* Program Cards in Carousel */
.ct-program-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Card color schemes - bold backgrounds */
.ct-program-card.blue {
  background: linear-gradient(135deg, #bfdbfe 0%, #dbeafe 100%);
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.ct-program-card.red {
  background: linear-gradient(135deg, #fecaca 0%, #fee2e2 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.ct-program-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
}

.ct-program-icon.blue {
  background: #eff6ff;
  color: #3b82f6;
}

.ct-program-icon.green {
  background: #f0fdf4;
  color: #22c55e;
}

.ct-program-icon.purple {
  background: #faf5ff;
  color: #a855f7;
}

.ct-program-icon.orange {
  background: #fff7ed;
  color: #f97316;
}

.ct-program-icon.red {
  background: #fef2f2;
  color: #ef4444;
}

.ct-program-icon.teal {
  background: #f0fdfa;
  color: #14b8a6;
}

.ct-program-icon i {
  font-size: 1.5rem;
}

.ct-program-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.ct-program-duration {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 16px;
}

.ct-program-description {
  font-family: "Lato", sans-serif;
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.ct-program-audience {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 24px;
}

.ct-program-audience-label {
  font-weight: 700;
  color: #1f2937;
}

.ct-program-btn {
  width: 100%;
  padding: 14px 24px;
  background: #188bf6;
  color: white;
  border: none;
  border-radius: 10px;
  font-family: "Lato", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ct-program-btn:hover {
  background: #1478d1;
  transform: translateY(-1px);
}

/* ===== CT RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
  .ct-hero-wrapper {
    min-height: auto;
    padding: 120px 16px 60px;
  }

  .ct-headline {
    font-size: 2.25rem;
  }

  .ct-description {
    font-size: 1.1rem;
  }

  .ct-button-container {
    flex-direction: column;
    gap: 16px;
  }

  .ct-button-container .btn {
    width: 100%;
    text-align: center;
  }

  .ct-benefits-section,
  .ct-how-it-works,
  .ct-programs-section {
    padding: 60px 16px;
  }

  .ct-benefits-headline,
  .ct-hiw-title,
  .ct-programs-headline {
    font-size: 2rem;
  }

  .ct-benefits-grid {
    grid-template-columns: 1fr;
  }

  .ct-horizontal-layout {
    flex-direction: column;
  }

  /* Mobile: Show all panels as accordion */
  .ct-step-content-panel {
    display: block;
    margin-bottom: 16px;
  }

  .ct-content-body {
    display: none;
  }

  .ct-step-content-panel.active .ct-content-body {
    display: block;
  }

  .ct-content-header::after {
    content: "+";
    margin-left: auto;
    font-size: 1.5rem;
    color: #64748b;
  }

  .ct-step-content-panel.active .ct-content-header::after {
    content: "−";
  }
}

@media (min-width: 769px) {
  .ct-side-navigation {
    display: flex;
  }

  /* Desktop: Only show active panel */
  .ct-step-content-panel {
    display: none;
  }

  .ct-step-content-panel.active {
    display: block;
  }

  .ct-content-header {
    cursor: default;
  }
}

@media (min-width: 1024px) {
  .ct-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .ct-button-container .btn,
  .ct-benefit-card,
  .ct-hiw-cta-button,
  .ct-program-btn {
    transition: none;
  }
}

/* ============================================================================
   ABOUT US - FLOATING LOGOS SECTION
   ============================================================================ */

.about-floating-logos-section {
  background: #0a0a0a;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.about-floating-logos-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

/* Left Content Area */
.about-floating-logos-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-floating-logos-eyebrow {
  display: inline-block;
  background: rgba(24, 139, 246, 0.15);
  color: var(--blue-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: fit-content;
  border: 1px solid rgba(24, 139, 246, 0.3);
}

.about-floating-logos-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.about-floating-logos-subtext {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
  max-width: 440px;
}

/* Right Logo Marquee */
.about-logo-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  padding: 40px 0;
  /* CSS mask for fade effect on edges */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* Individual Marquee Row */
.about-logo-marquee-row {
  display: flex;
  width: 100%;
}

/* Track containing duplicated logos for seamless loop */
.about-logo-marquee-track {
  display: flex;
  gap: 50px;
  flex-shrink: 0;
}

/* Direction and speed variants */
.about-logo-marquee-row--right .about-logo-marquee-track {
  animation: aboutMarqueeScrollRight 40s linear infinite;
}

.about-logo-marquee-row--left .about-logo-marquee-track {
  animation: aboutMarqueeScrollLeft 40s linear infinite;
}

/* Marquee Scroll Keyframes */
@keyframes aboutMarqueeScrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes aboutMarqueeScrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Individual Logo Item */
.about-marquee-logo {
  flex-shrink: 0;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-marquee-logo img {
  height: 100%;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.about-marquee-logo:hover img {
  opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .about-floating-logos-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-floating-logos-content {
    align-items: center;
  }

  .about-floating-logos-subtext {
    max-width: 100%;
  }

  .about-logo-marquee-wrapper {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .about-floating-logos-section {
    padding: 60px 0;
  }

  .about-floating-logos-container {
    padding: 0 20px;
    gap: 40px;
  }

  .about-floating-logos-headline {
    font-size: 1.75rem;
  }

  .about-logo-marquee-wrapper {
    gap: 20px;
  }

  .about-logo-marquee-track {
    gap: 40px;
  }

  .about-marquee-logo {
    height: 105px;
  }

  .about-marquee-logo img {
    max-width: 270px;
  }
}

/* Accessibility - Slow animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .about-logo-marquee-track {
    animation-duration: 80s;
  }
}

/* ==========================================================================
   HOMEPAGE: UPCOMING PROGRAMS SECTION
   ========================================================================== */
.hp-upcoming-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 2;
}

.hp-upcoming-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.hp-upcoming-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hp-upcoming-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.hp-upcoming-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Row Layout */
.hp-upcoming-card {
  display: grid;
  grid-template-columns: 260px 1fr 160px;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.hp-upcoming-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Image Column */
.hp-upcoming-image-col {
  position: relative;
}

.hp-upcoming-hero-image {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.hp-upcoming-image-overlay {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
}

.hp-upcoming-format-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hp-upcoming-format-badge.in-person {
  background: var(--blue-dark);
  color: #fff;
}

.hp-upcoming-format-badge.virtual {
  background: #10b981;
  color: #fff;
}

/* Info Column */
.hp-upcoming-info-col {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}

.hp-upcoming-program-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
  line-height: 1.3;
}

.hp-upcoming-dates-location {
  font-size: var(--text-sm);
  color: var(--gray-600);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.hp-upcoming-dates-location time {
  font-weight: 600;
  color: var(--blue-dark);
}

.hp-upcoming-location {
  color: var(--gray-500);
}

/* Action Column */
.hp-upcoming-action-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  background: var(--gray-50);
  border-left: 1px solid var(--gray-200);
}

.hp-upcoming-learn-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1e3a5f 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.hp-upcoming-learn-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(40, 82, 140, 0.4);
  color: var(--white);
}

/* CTA Container */
.hp-upcoming-cta {
  text-align: center;
  margin-top: var(--space-3xl);
}

/* NoScript Fallback */
.hp-upcoming-noscript {
  text-align: center;
  padding: var(--space-xl);
  color: var(--gray-600);
}

.hp-upcoming-noscript a {
  color: var(--blue-dark);
  font-weight: 600;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .hp-upcoming-card {
    grid-template-columns: 200px 1fr 140px;
  }

  .hp-upcoming-hero-image {
    min-height: 180px;
  }

  .hp-upcoming-info-col {
    padding: var(--space-lg);
  }

  .hp-upcoming-action-col {
    padding: var(--space-lg);
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .hp-upcoming-section {
    padding: var(--space-3xl) 0;
  }

  .hp-upcoming-card {
    grid-template-columns: 1fr;
  }

  .hp-upcoming-hero-image {
    height: 180px;
    min-height: auto;
  }

  .hp-upcoming-action-col {
    border-left: none;
    border-top: 1px solid var(--gray-200);
    padding: var(--space-lg);
  }

  .hp-upcoming-learn-btn {
    width: 100%;
  }

  .hp-upcoming-info-col {
    padding: var(--space-lg);
  }
}

/* Accessibility - Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hp-upcoming-card:hover {
    transform: none;
  }

  .hp-upcoming-learn-btn:hover {
    transform: none;
  }
}

/* Block/Session Tables for Upcoming Programs */
.hp-upcoming-blocks-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-md);
  font-size: var(--text-sm);
}

.hp-upcoming-blocks-table th {
  text-align: left;
  padding: var(--space-xs) var(--space-sm);
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--text-xs);
}

.hp-upcoming-blocks-table td {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--gray-100);
}

.hp-upcoming-session-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--blue-dark);
  color: white;
  border-radius: 50%;
  font-size: var(--text-xs);
  font-weight: 700;
}

.hp-upcoming-blocks-footnote {
  font-size: var(--text-xs);
  color: var(--gray-500);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* Mobile: hide table, show simplified view */
@media (max-width: 767px) {
  .hp-upcoming-blocks-table {
    display: none;
  }

  .hp-upcoming-blocks-footnote {
    display: none;
  }
}


/* ========================================
   PRIVACY POLICY PAGE (.privacy-*)
   ======================================== */

/* Legal pages header - dark nav text for light hero background */
.privacy-page .header-nav a,
.terms-page .header-nav a {
  color: var(--gray-800);
}

.privacy-page .header-nav a:hover,
.terms-page .header-nav a:hover {
  color: var(--blue-primary);
}

.privacy-hero {
  padding: calc(var(--space-4xl) + 80px) var(--space-lg) var(--space-3xl);
  text-align: center;
  background: var(--gray-50);
}

.privacy-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 var(--space-sm);
}

.privacy-hero .privacy-effective-date {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gray-500);
  margin: 0;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

.privacy-intro {
  font-size: var(--text-lg);
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.privacy-section {
  margin-bottom: var(--space-2xl);
}

.privacy-section h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 var(--space-md);
}

.privacy-section p {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-list {
  list-style: disc;
  padding-left: var(--space-xl);
  margin: var(--space-md) 0;
}

.privacy-list li {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: var(--space-xs);
}

.privacy-list.nested {
  list-style: circle;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.privacy-section a {
  color: var(--blue-primary);
  text-decoration: none;
}

.privacy-section a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 767px) {
  .privacy-hero {
    padding: calc(var(--space-3xl) + 60px) var(--space-md) var(--space-2xl);
  }

  .privacy-hero h1 {
    font-size: var(--text-3xl);
  }

  .privacy-content {
    padding: var(--space-2xl) var(--space-md);
  }

  .privacy-section h2 {
    font-size: var(--text-xl);
  }
}
