/* Custom Variables & Design System */
:root {
  --font-headers: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Color Palette - Premium Indigo/Teal Slate */
  --bg-main: #0b0c10;
  --bg-card: rgba(17, 20, 32, 0.65);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: #6366f1;
  
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #10b981 100%);
  --btn-gradient: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
  --btn-hover-gradient: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-highlight: #38bdf8;
  --error-color: #ef4444;
  --success-color: #10b981;
  
  --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --glow-shadow: 0 0 25px rgba(99, 102, 241, 0.35);
  --transition-speed: 0.3s;
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

/* Background Glowing Orbs */
.bg-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  filter: blur(80px);
  pointer-events: none;
  animation: floatGlow 15s infinite alternate ease-in-out;
}

.bg-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  filter: blur(80px);
  pointer-events: none;
  animation: floatGlow 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, 5%) scale(1.1); }
}

/* Container */
.app-container {
  width: 100%;
  max-width: 900px;
  padding: 2rem 1.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

/* Header */
.app-header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  font-family: var(--font-headers);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.logo-image {
  height: 48px;
  max-width: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.02);
}

.logo-icon {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 2px 4px rgba(99, 102, 241, 0.3));
}

.logo span {
  color: var(--text-main);
}

.logo span span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
}

/* Card Styling */
.main-card-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* Card View Management */
.card-view {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.card-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.card-header {
  margin-bottom: 2.2rem;
}

.card-header h2 {
  font-family: var(--font-headers);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

/* Two-column stretch for dropdown in desktop */
.form-grid .input-group:nth-child(4) {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .form-grid .input-group:nth-child(4) {
    grid-column: span 1;
  }
}

.input-group label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.input-group label i {
  color: var(--text-highlight);
  font-size: 0.9rem;
}

.input-group input,
.input-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed), background-color var(--transition-speed);
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

/* Dropdown styling */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}

.select-wrapper option {
  background-color: #121420;
  color: var(--text-main);
}

.select-arrow {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: transform var(--transition-speed);
}

.select-wrapper select:focus + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: var(--border-focus);
}

/* Form Errors */
.error-msg {
  color: var(--error-color);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.input-group.invalid input,
.input-group.invalid select {
  border-color: var(--error-color);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
}

.input-group.invalid .error-msg {
  display: flex;
}

/* Custom Calendar and Date/Time Widget styling */
.scheduler-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  margin-bottom: 2rem;
}

.section-title {
  font-family: var(--font-headers);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-main);
}

.section-title i {
  color: var(--text-highlight);
}

/* Dates Slider */
.date-selector-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.dates-slider {
  display: flex;
  flex: 1;
  width: 0;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.25rem 0.1rem;
  scrollbar-width: none; /* Hide standard Firefox scrollbar */
}

.dates-slider::-webkit-scrollbar {
  display: none; /* Hide Chrome/Safari scrollbar */
}

.slider-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-speed), border-color var(--transition-speed), opacity var(--transition-speed);
  flex-shrink: 0;
  z-index: 2;
}

.slider-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Date Item Capsule */
.date-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  min-width: 70px;
  height: 85px;
  cursor: pointer;
  transition: transform 0.2s, background-color var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed);
  flex-shrink: 0;
  user-select: none;
}

.date-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.date-item.selected {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
  border-color: var(--border-focus);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

.date-item .day-name {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.date-item.selected .day-name {
  color: var(--text-highlight);
}

.date-item .day-num {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-headers);
}

.date-item .month-name {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.date-item.selected .month-name {
  color: var(--text-main);
}

/* Slots Grid */
.time-slots-container {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.time-slots-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.75rem;
}

.no-date-msg {
  color: var(--text-muted);
  font-size: 0.85rem;
  grid-column: 1 / -1;
  text-align: center;
  padding: 1rem 0;
}

.no-slots-notice {
  color: var(--text-muted);
  font-size: 0.85rem;
  grid-column: 1 / -1;
  text-align: center;
  padding: 1.25rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.01);
}

.slot-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--transition-speed), border-color var(--transition-speed), transform var(--transition-speed), color var(--transition-speed);
  user-select: none;
}

.slot-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.slot-item.selected {
  background: var(--btn-gradient);
  border-color: transparent;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.slot-item.booked {
  opacity: 0.25;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.01);
  border-color: rgba(255, 255, 255, 0.03);
}

.slot-item.booked:hover {
  transform: none;
}

#scheduler-error {
  margin-top: 0.75rem;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: var(--btn-gradient);
  border: none;
  border-radius: 12px;
  padding: 1.1rem;
  color: #ffffff;
  font-family: var(--font-headers);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  transition: background var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: var(--btn-hover-gradient);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: 0.5s;
}

.submit-btn:hover::after {
  left: 100%;
  transition: 0.8s ease-in-out;
}

/* VIEW 2: SUCCESS AND DETAILS VIEW STYLING */
.success-banner {
  text-align: center;
  margin-bottom: 2rem;
}

.success-icon-wrapper {
  font-size: 3.5rem;
  color: var(--success-color);
  margin-bottom: 0.75rem;
  display: inline-block;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
  0% { transform: scale(0.3); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-banner h2 {
  font-family: var(--font-headers);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.success-banner p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Appointment Summary */
.appointment-summary {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .appointment-summary {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.summary-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.summary-val {
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.summary-val i {
  color: var(--text-highlight);
}

.summary-val.highlight {
  color: var(--text-highlight);
}

.view-divider {
  border: 0;
  height: 1px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  margin-bottom: 2rem;
}

/* Program Insights Section */
.program-insight-panel {
  margin-bottom: 2.2rem;
}

.insight-header {
  margin-bottom: 1.5rem;
}

.insight-header h3 {
  font-family: var(--font-headers);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.insight-header h3 i {
  color: var(--text-highlight);
}

.insight-header p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Dynamic Card Details Styling */
.dynamic-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-out;
}

.program-details-title {
  font-family: var(--font-headers);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-highlight);
  margin-bottom: 1rem;
}

.program-details-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.program-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .program-features {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
}

.feature-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  gap: 0.75rem;
}

.feature-icon {
  font-size: 1.25rem;
  color: var(--success-color);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}

.program-curriculum {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
}

.program-curriculum h4 {
  font-family: var(--font-headers);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.curriculum-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

@media (max-width: 600px) {
  .curriculum-list {
    grid-template-columns: 1fr;
  }
}

.curriculum-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.curriculum-list li i {
  color: var(--text-highlight);
  font-size: 0.75rem;
}

/* Success CTA Action buttons */
.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .success-actions {
    flex-direction: column-reverse;
  }
  .success-actions button,
  .success-actions a {
    width: 100%;
    justify-content: center;
  }
}

.btn-primary {
  background: var(--btn-gradient);
  border: none;
  border-radius: 12px;
  padding: 0.9rem 1.75rem;
  color: #ffffff;
  font-family: var(--font-headers);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
  transition: transform var(--transition-speed), background-color var(--transition-speed), box-shadow var(--transition-speed);
}

.btn-primary:hover {
  background: var(--btn-hover-gradient);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1.75rem;
  color: var(--text-main);
  font-family: var(--font-headers);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background-color var(--transition-speed), border-color var(--transition-speed), transform var(--transition-speed);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Footer Styling */
.app-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 12, 16, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loading-overlay.active {
  display: flex;
  opacity: 1;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  border-top-color: var(--border-focus);
  border-right-color: var(--border-focus);
  animation: spin 1s infinite linear;
}

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

.loader-content p {
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-headers);
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Modals & Email Configurations */
.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.settings-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-speed), color var(--transition-speed), transform var(--transition-speed);
}

.settings-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  transform: rotate(45deg);
}

.settings-btn i {
  font-size: 1.1rem;
}

/* Modal Overlay Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content.glass-card {
  background: rgba(18, 20, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.modal-overlay.active .modal-content.glass-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-family: var(--font-headers);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.modal-header h3 i {
  color: var(--text-highlight);
}

.close-modal-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-speed);
}

.close-modal-btn:hover {
  color: var(--error-color);
}

.modal-body {
  padding: 1.5rem;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.modal-desc i {
  color: var(--text-highlight);
  margin-right: 0.35rem;
}

.modal-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.15);
}

/* Radio Selection Elements */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color var(--transition-speed), background-color var(--transition-speed);
}

.radio-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

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

.radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: border-color var(--transition-speed);
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: var(--border-focus);
}

.radio-custom::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--border-focus);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.radio-label-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.radio-label-text strong {
  font-size: 0.92rem;
  color: var(--text-main);
}

.radio-label-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Config Field Group */
.config-field-group {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: fadeIn 0.3s ease-out;
}

.config-field-group label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.config-field-group input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-speed);
}

.config-field-group input:focus {
  border-color: var(--border-focus);
}

.help-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.help-text a {
  color: var(--text-highlight);
  text-decoration: none;
}

.help-text a:hover {
  text-decoration: underline;
}

/* Sandbox Modal Styling */
.modal-content.glass-card.sandbox-card {
  max-width: 620px;
}

.email-preview-frame {
  background: #ffffff;
  border-radius: 12px;
  overflow-y: auto;
  max-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 10px;
}

/* Custom ACCA Program Page Styles */
.acca-custom-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: var(--text-main);
  animation: fadeIn 0.5s ease-out;
}

.acca-header-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.acca-title {
  font-family: var(--font-headers);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-highlight);
  margin: 0;
  line-height: 1.3;
}

.acca-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  margin: 0.25rem 0 0.5rem 0;
}

.acca-collab-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.acca-collab-text {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.acca-kpmg-logo-badge {
  background: #ffffff;
  color: #00338d; /* KPMG Blue */
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  padding: 0.35rem 1rem;
  border-radius: 6px;
  border: 1px solid #edf2f7;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.25), 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.acca-kpmg-logo-badge:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 6px 12px rgba(0, 0, 0, 0.2);
}

.acca-tags-container {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.acca-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.18) 0%, rgba(16, 185, 129, 0.18) 100%);
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.45);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.acca-tag:hover {
  transform: translateY(-2px);
  border-color: #6366f1;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.35);
  color: #ffffff;
}

/* Badges section for Guarantees */
.acca-badges-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin: 1rem 0;
}

@media (max-width: 480px) {
  .acca-badges-row {
    gap: 1.5rem;
  }
}

.acca-badge-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px double #00f2fe;
  background: rgba(0, 242, 254, 0.06);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.25), inset 0 0 12px rgba(0, 242, 254, 0.1);
  text-align: center;
  padding: 0.35rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.acca-badge-circle:hover {
  transform: scale(1.08);
  border-color: #38bdf8;
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.45), inset 0 0 15px rgba(0, 242, 254, 0.2);
}

.acca-badge-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: #00f2fe;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.acca-badge-val {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 3px 0;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.acca-badge-sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: #00f2fe;
  letter-spacing: 0.3px;
}

/* 4-Column stats grid with thin vertical dividers */
.acca-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 992px) {
  .acca-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .acca-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.acca-stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

/* Vertical dividers on desktop */
@media (min-width: 993px) {
  .acca-stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
}

.acca-stat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-highlight);
}

.acca-stat-header i {
  font-size: 1rem;
  color: var(--text-highlight);
}

.acca-stat-header span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.acca-stat-value {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-main);
}

/* Eligibility styling */
.acca-eligibility-sec {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.acca-sec-title {
  font-family: var(--font-headers);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.acca-sec-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.acca-eligibility-cards-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.acca-eligibility-card {
  background: #cc1f29; /* Red block */
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(204, 31, 41, 0.15);
  transition: transform 0.2s;
}

.acca-eligibility-card:hover {
  transform: translateY(-2px);
}

.acca-eligibility-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.acca-eligibility-detail {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.4;
}

.acca-eligibility-footer-box {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 1.25rem;
  color: var(--text-main);
  font-size: 0.88rem;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.acca-eligibility-footer-box a {
  color: var(--text-highlight);
  font-weight: 600;
  word-break: break-all;
  text-decoration: underline;
}

.acca-eligibility-footer-box a:hover {
  color: #ffffff;
}

/* Hiring Partners Logo Wall styling */
.acca-partners-sec {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.acca-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}

.acca-partner-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 0.75rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #1a202c;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2f7;
  height: 48px;
  transition: transform 0.2s, background-color 0.2s;
}

.acca-partner-card:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

/* Custom CIBOP Program Page Styles */
.cibop-custom-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: var(--text-main);
  animation: fadeIn 0.5s ease-out;
}

/* Badges row: Seal & Summit side-by-side */
.cibop-badges-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin: 1rem 0;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cibop-badges-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

/* Gold Job Assurance Seal */
.cibop-seal-gold {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  border: 3px double #eab308; /* Amber/Gold */
  background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0.02) 100%);
  box-shadow: 0 0 25px rgba(234, 179, 8, 0.25), inset 0 0 12px rgba(234, 179, 8, 0.1);
  text-align: center;
  padding: 0.35rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.cibop-seal-gold:hover {
  transform: scale(1.08);
  border-color: #facc15;
  box-shadow: 0 0 35px rgba(234, 179, 8, 0.45), inset 0 0 15px rgba(234, 179, 8, 0.2);
}

.cibop-seal-percent {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.cibop-seal-text {
  font-size: 0.65rem;
  font-weight: 800;
  color: #facc15;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin: 2px 0;
  text-transform: uppercase;
}

.cibop-seal-stars {
  font-size: 0.65rem;
  font-weight: 700;
  color: #facc15;
  letter-spacing: 0.3px;
}

/* Summit Badge Styling */
.cibop-summit-badge {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  height: 52px;
  align-self: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.cibop-summit-badge:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.25);
}

.summit-logo-side {
  background: #ffffff;
  padding: 0.35rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1e293b;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.summit-edition {
  font-size: 0.5rem;
  font-weight: 700;
  color: #dc2626; /* Red color */
  text-transform: uppercase;
  line-height: 1;
}

.summit-event {
  font-size: 0.62rem;
  font-weight: 800;
  color: #1e3a8a; /* Deep blue */
  letter-spacing: 0.2px;
  line-height: 1.1;
  margin-top: 1px;
}

.summit-year {
  font-size: 0.58rem;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1;
}

.summit-desc-side {
  background: #0f766e; /* Teal green */
  color: #ffffff;
  padding: 0.4rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.summit-title {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.summit-subtitle {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.2;
}

/* Header Container */
.cibop-header-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.cibop-title {
  font-family: var(--font-headers);
  font-size: 1.6rem;
  font-weight: 800;
  color: #0d9488; /* Teal Accent */
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 0 15px rgba(13, 148, 136, 0.15);
}

.cibop-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  margin: 0.25rem 0 0.5rem 0;
}

/* Checklist Details */
.cibop-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.cibop-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.4;
}

.cibop-check-icon {
  color: #0d9488; /* Teal */
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(13, 148, 136, 0.3));
}

/* 4-Column Stats Grid */
.cibop-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 992px) {
  .cibop-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .cibop-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.cibop-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  position: relative;
}

@media (min-width: 993px) {
  .cibop-stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
}

.cibop-stat-icon-wrapper {
  font-size: 1.35rem;
  color: #0d9488;
  margin-bottom: 0.1rem;
}

.cibop-stat-value {
  font-family: var(--font-headers);
  font-size: 1.85rem;
  font-weight: 800;
  color: #0d9488; /* Teal Stat */
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(13, 148, 136, 0.20);
}

.cibop-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Career Target Roles styling */
.cibop-careers-sec {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
}

.cibop-careers-title {
  font-family: var(--font-headers);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.cibop-pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cibop-pill-primary {
  background: #0f766e; /* Deep green-teal */
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
  border-radius: 20px;
  border: 1px solid #14b8a6;
  box-shadow: 0 4px 10px rgba(15, 118, 110, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.cibop-pill-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(15, 118, 110, 0.6);
}

.cibop-pill-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s;
  cursor: default;
}

.cibop-pill-secondary:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #0f766e;
  border-color: #0f766e;
}

/* Reviews Button style */
.btn-reviews {
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid #0d9488;
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
  color: #0d9488;
  font-family: var(--font-headers);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
  transition: transform var(--transition-speed), background-color var(--transition-speed), border-color var(--transition-speed), color var(--transition-speed), box-shadow var(--transition-speed);
}

.btn-reviews:hover {
  background: #0d9488;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.35);
}

/* Financial Analyst Program Custom Styles */
.financial-analyst-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  color: var(--text-main);
  animation: fadeIn 0.5s ease-out;
}

.fa-section-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.fa-section-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.fa-section-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.fa-section-title {
  font-family: var(--font-headers);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-highlight);
  margin: 0;
  line-height: 1.3;
}

.fa-section-subtitle {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0.25rem 0;
}

.fa-section-collab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

.fa-section-collab span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.fa-kpmg-badge {
  background: #ffffff;
  color: #00338d; /* KPMG Blue */
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  border: 1px solid #edf2f7;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

/* ==========================================
   CFA SECTION SPECIFIC STYLES
   ========================================== */
.cfa-section {
  border-left: 4px solid #00f2fe;
}

.cfa-brand-logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.cfa-brand-logo-text {
  font-family: var(--font-headers);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.fa-cfa-tags-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.fa-cfa-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.35rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Badges section for Guarantees */
.fa-cfa-badges-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 0.5rem 0;
  flex-wrap: wrap;
}

.fa-cfa-badge-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px dashed #00f2fe;
  background: rgba(0, 242, 254, 0.04);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
  text-align: center;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.fa-cfa-badge-seal:hover {
  transform: scale(1.05);
}

.fa-cfa-badge-icon {
  font-size: 1.25rem;
  color: #00f2fe;
  margin-bottom: 2px;
}

.fa-cfa-badge-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  text-transform: uppercase;
}

.fa-cfa-badge-label {
  font-size: 0.58rem;
  font-weight: 700;
  color: #00f2fe;
  letter-spacing: 0.2px;
  margin-top: 1px;
}

/* 4-Column Highlights Grid */
.fa-cfa-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 992px) {
  .fa-cfa-highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 576px) {
  .fa-cfa-highlights-grid {
    grid-template-columns: 1fr;
  }
}

.fa-cfa-stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
}

@media (min-width: 993px) {
  .fa-cfa-stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
  }
}

.fa-cfa-stat-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-highlight);
}

.fa-cfa-stat-header i {
  font-size: 0.9rem;
}

.fa-cfa-stat-header span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.fa-cfa-stat-value {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-main);
}

/* ==========================================
   KPMG FAP SECTION SPECIFIC STYLES
   ========================================== */
.kpmg-fap-section {
  border-left: 4px solid #3b82f6;
}

.fa-kpmg-badges-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 0.5rem 0;
  flex-wrap: wrap;
}

.fa-kpmg-badge-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
  text-align: center;
  padding: 0.4rem;
  transition: transform 0.2s ease;
}

.fa-kpmg-badge-seal:hover {
  transform: translateY(-2px);
}

.fa-kpmg-badge-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.fa-kpmg-badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 1px;
}


/* 3-Column Highlights Grid */
.fa-kpmg-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 768px) {
  .fa-kpmg-highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.fa-kpmg-stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
}

@media (min-width: 769px) {
  .fa-kpmg-stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
  }
}

.fa-kpmg-stat-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #3b82f6;
}

.fa-kpmg-stat-header i {
  font-size: 0.9rem;
}

.fa-kpmg-stat-header span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.fa-kpmg-stat-value {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-main);
}

/* KPMG FAP Details Container (Green background card) */
.fa-kpmg-details-panel {
  background: #023d30; /* Premium Dark Forest Green */
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fa-kpmg-panel-title {
  font-family: var(--font-headers);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

.fa-kpmg-panel-desc {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #cbd5e1;
  text-align: center;
  margin: 0 0 0.5rem 0;
}

.fa-kpmg-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
}

@media (max-width: 768px) {
  .fa-kpmg-panel-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.fa-kpmg-numbers-col h6,
.fa-kpmg-roles-col h6 {
  font-family: var(--font-headers);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fa-kpmg-proof-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fa-kpmg-proof-item {
  background: rgba(0, 0, 0, 0.15);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border-left: 3px solid #10b981;
}

.fa-kpmg-proof-value {
  font-family: var(--font-headers);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1px;
}

.fa-kpmg-proof-label {
  font-size: 0.75rem;
  color: #cbd5e1;
  line-height: 1.3;
}

.fa-kpmg-roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

@media (max-width: 480px) {
  .fa-kpmg-roles-grid {
    grid-template-columns: 1fr;
  }
}

.fa-kpmg-role-pill {
  background: #ffffff;
  color: #023d30;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  cursor: default;
}

.fa-kpmg-role-pill:hover {
  transform: translateY(-2px);
}

/* ==========================================
   PGFAP SECTION SPECIFIC STYLES
   ========================================== */
.pgfap-section {
  border-left: 4px solid #10b981;
}

.fa-pgfap-top-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.fa-pgfap-seal-gold {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px double #eab308;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.08) 0%, rgba(0, 0, 0, 0) 80%);
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.15);
  text-align: center;
  padding: 0.35rem;
}

.fa-pgfap-seal-percent {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.fa-pgfap-seal-text {
  font-size: 0.55rem;
  font-weight: 800;
  color: #facc15;
  letter-spacing: 0.3px;
  margin: 1px 0;
  text-transform: uppercase;
}

.fa-pgfap-seal-stars {
  font-size: 0.55rem;
  color: #facc15;
}

.fa-pgfap-summit-badge {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 44px;
}

.fa-pgfap-summit-logo {
  background: #ffffff;
  padding: 0.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.fa-pgfap-summit-ed {
  font-size: 0.45rem;
  font-weight: 700;
  color: #dc2626;
  text-transform: uppercase;
  line-height: 1;
}

.fa-pgfap-summit-ev,
.fa-pgfap-summit-yr {
  font-size: 0.52rem;
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1;
}

.fa-pgfap-summit-desc {
  background: #065f46; /* Deep emerald */
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fa-pgfap-summit-t {
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.1;
}

.fa-pgfap-summit-st {
  font-size: 0.6rem;
  opacity: 0.9;
  line-height: 1.1;
}

.fa-pgfap-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.fa-pgfap-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.fa-pgfap-check {
  color: #10b981;
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Schedules grid */
.fa-pgfap-schedules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 576px) {
  .fa-pgfap-schedules-grid {
    grid-template-columns: 1fr;
  }
}

.fa-pgfap-schedule-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fa-pgfap-schedule-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #10b981;
  font-size: 0.85rem;
}

.fa-pgfap-schedule-mode {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}

.fa-pgfap-schedule-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.fa-pgfap-award-footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.75rem;
  margin-top: -0.25rem;
}

/* PGFAP Horizontal Placements Card Banner */
.fa-pgfap-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: #ffffff;
  border-radius: 14px;
  padding: 1.25rem 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #1e293b;
  text-align: center;
}

@media (max-width: 768px) {
  .fa-pgfap-stats-banner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .fa-pgfap-stats-banner {
    grid-template-columns: 1fr;
  }
}

.fa-pgfap-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  position: relative;
}

@media (min-width: 769px) {
  .fa-pgfap-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #cbd5e1;
  }
}

.fa-pgfap-stat-icon {
  font-size: 1.1rem;
  color: #065f46;
}

.fa-pgfap-stat-val {
  font-family: var(--font-headers);
  font-size: 1.3rem;
  font-weight: 800;
  color: #065f46;
  line-height: 1.1;
}

.fa-pgfap-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
}

/* ==========================================
   CSS GRAPHIC FINANCIAL DASHBOARD STYLES
   ========================================== */
.fa-pgfap-dashboard-mock {
  background: #141624;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  font-family: 'Outfit', sans-serif;
  margin: 0.5rem 0;
}

.fa-dash-header {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fa-dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.fa-dash-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.fa-dash-body {
  display: flex;
  height: 160px;
}

.fa-dash-sidebar {
  width: 32px;
  background: rgba(255, 255, 255, 0.01);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.fa-dash-sidebar .fa-dash-side-item {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.fa-dash-sidebar .fa-dash-side-item.active {
  background: #10b981;
}

.fa-dash-content {
  flex: 1;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fa-dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.fa-dash-metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 0.4rem 0.5rem;
  display: flex;
  flex-direction: column;
}

.fa-dash-metric-label {
  font-size: 0.58rem;
  color: var(--text-muted);
}

.fa-dash-metric-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.fa-dash-metric-trend {
  font-size: 0.55rem;
  font-weight: 600;
  margin-top: 1px;
}

.fa-dash-metric-trend.positive { color: #10b981; }
.fa-dash-metric-trend.negative { color: #ef4444; }

.fa-dash-charts {
  flex: 1;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.fa-dash-chart-title {
  font-size: 0.58rem;
  color: var(--text-muted);
  font-weight: 600;
}

.fa-dash-bar-container {
  flex: 1;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2px;
}

.fa-dash-bar-group {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 100%;
  width: 20%;
}

.fa-dash-bar {
  width: 10px;
  border-radius: 2px 2px 0 0;
  transition: height 0.5s ease-out;
}

.fa-dash-bar.fill-1 {
  background: #3b82f6;
}

.fa-dash-bar.fill-2 {
  background: #10b981;
}

/* ==========================================
   CMA US CUSTOM LAYOUT STYLES
   ========================================== */
.cma-custom-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 0;
  animation: fadeInUp 0.6s ease-out;
}

/* Header & Logos */
.cma-header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.cma-top-logo-row {
  margin-bottom: 0.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.cma-logo-badge {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  max-width: 480px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cma-logo-main {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0d3b66;
  letter-spacing: -0.5px;
  line-height: 1;
}

.cma-logo-main sup {
  font-size: 0.8rem;
  top: -0.6em;
}

.cma-logo-divider {
  width: 2px;
  height: 35px;
  background: #cbd5e1;
  margin: 0 0.8rem;
}

.cma-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: #475569;
  text-align: left;
  line-height: 1.2;
}

.cma-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  max-width: 800px;
  letter-spacing: -0.3px;
  margin: 0;
}

.cma-subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 650px;
  margin: 0;
  line-height: 1.4;
}

.cma-collab-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.cma-collab-text {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

.cma-kpmg-logo-badge {
  background: #00338d; /* KPMG Blue */
  color: #ffffff;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.cma-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.cma-tag {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
}

/* Badges for Pass Rate & Guarantee */
.cma-badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

/* Dashed Blue Circle Seal */
.cma-seal-dashed {
  position: relative;
  width: 105px;
  height: 105px;
  border: 2px dashed #00b4d8;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 216, 0.05);
  animation: pulseGlow 3s infinite alternate;
}

.cma-seal-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: #00b4d8;
  line-height: 1;
}

.cma-seal-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
  text-align: center;
  max-width: 75px;
}

/* Green Seal Check */
.cma-seal-check {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
}

.cma-seal-check-circle {
  width: 32px;
  height: 32px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0c10;
  font-size: 0.9rem;
}

.cma-seal-text-col {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cma-seal-val-solid {
  font-size: 0.9rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1.1;
}

.cma-seal-lbl-solid {
  font-size: 0.65rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.2px;
}

/* 4-Column Highlights Grid */
.cma-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cma-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.cma-stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cma-stat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cma-stat-header i {
  color: #3b82f6;
  font-size: 0.9rem;
}

.cma-stat-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

/* Roadmap Section */
.cma-roadmap-sec {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  margin-top: 1rem;
}

.cma-roadmap-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
}

.cma-green-accent {
  color: #10b981;
}

.cma-roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  padding-left: 2rem;
}

/* Vertical Timeline Track Line */
.cma-roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: linear-gradient(to bottom, #10b981 0%, #3b82f6 50%, rgba(255, 255, 255, 0.05) 100%);
}

.cma-roadmap-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
  align-items: flex-start;
}

.cma-roadmap-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.cma-roadmap-number {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 20px;
  height: 20px;
  background: #10b981;
  color: #0b0c10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.cma-roadmap-icon-wrapper {
  width: 32px;
  height: 32px;
  background: #0f172a;
  border: 2px solid #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  margin-left: -16px; /* align with timeline line */
}

.cma-roadmap-item:hover .cma-roadmap-icon-wrapper {
  transform: scale(1.15);
  border-color: #10b981;
  color: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.4);
}

.cma-roadmap-right {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
  text-align: left;
}

.cma-roadmap-item:hover .cma-roadmap-right {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(16, 185, 129, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cma-roadmap-step-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #10b981;
  margin: 0 0 0.35rem 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cma-roadmap-step-desc {
  font-size: 0.8rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.45;
}

/* Pulse animation for seal */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px rgba(0, 180, 216, 0.2);
    border-color: #00b4d8;
  }
  100% {
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.4);
    border-color: #00f2fe;
  }
}

/* Responsiveness */
@media (max-width: 1024px) {
  .cma-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cma-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .cma-badges-row {
    gap: 1.5rem;
  }
  
  .cma-title {
    font-size: 1.5rem;
  }
  
  .cma-logo-badge {
    padding: 0.4rem 0.8rem;
  }
  
  .cma-logo-main {
    font-size: 1.5rem;
  }
  
  .cma-roadmap-sec {
    padding: 1.5rem 1rem;
  }
  
  .cma-roadmap-timeline {
    padding-left: 1.5rem;
  }
  
  .cma-roadmap-timeline::before {
    left: 8px;
  }
  
  .cma-roadmap-icon-wrapper {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
    margin-left: -14px;
  }
  
  .cma-roadmap-number {
    left: -28px;
    top: 4px;
    width: 16px;
    height: 16px;
    font-size: 0.6rem;
  }
  
  .cma-roadmap-right {
    padding: 0.8rem 1rem;
  }
}

/* ==========================================
   NEED GUIDANCE CUSTOM CALLOUT BANNER
   ========================================== */
.guidance-job-market-alert {
  background: rgba(13, 27, 42, 0.6); /* Premium dark blue-grey backdrop */
  border: 1px solid rgba(251, 197, 49, 0.25); /* Soft gold tint border */
  border-radius: 12px;
  padding: 2.25rem 2rem;
  margin: 1.5rem 0 2rem 0;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeInUp 0.5s ease-out;
}

.guidance-job-alert-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.guidance-gold-text {
  color: #fbc531; /* Gold accent color matching user image */
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
}

.guidance-job-alert-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

.guidance-job-alert-desc strong {
  color: #cbd5e1;
  font-weight: 600;
}



