/* =============================================
   AI Mastery Academy Sales Page Styles
   ============================================= */

/* CSS Variables */
:root {
  --ama-primary: #2b7de9;
  --ama-primary-dark: #1e5fba;
  --ama-primary-light: #5b9bd5;
  --ama-secondary: #3b82f6;
  --ama-secondary-dark: #2563eb;
  --ama-dark: #5b9bd5;
  --ama-dark-light: #4a8ac4;
  --ama-text: #3a7cbd;
  --ama-text-light: #64748b;
  --ama-success: #60a5fa;
  --ama-danger: #ef4444;
  --ama-gradient: linear-gradient(135deg, #1e5fba 0%, #3b82f6 50%, #60a5fa 100%);
  --ama-gradient-gold: linear-gradient(135deg, #2b7de9 0%, #5b9bd5 100%);
}

/* =============================================
   Custom Snake-Line Cursor (ITO Blue)
   ============================================= */
.ama-snake-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  width: 32px;
  height: 32px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ama-snake-cursor.active {
  opacity: 1;
}

.ama-snake-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transition: opacity 0.15s ease;
}

/* Show pointer by default, hide click state */
.ama-snake-pointer {
  opacity: 1;
}

.ama-snake-click {
  opacity: 0;
}

/* On click, swap visibility */
.ama-snake-cursor.clicking .ama-snake-pointer {
  opacity: 0;
}

.ama-snake-cursor.clicking .ama-snake-click {
  opacity: 1;
}

.ama-snake-path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ITO Blue color variations - 3 distinct parallel lines with long segments */
.ama-snake-1 {
  stroke: #5b9bd5;
  stroke-dasharray: 60 20;
  animation: snakeMove1 4s linear infinite;
}

.ama-snake-2 {
  stroke: #3b82f6;
  stroke-dasharray: 55 25;
  animation: snakeMove2 3s linear infinite;
}

.ama-snake-3 {
  stroke: #60a5fa;
  stroke-dasharray: 50 30;
  animation: snakeMove3 5s linear infinite;
}

/* Snake drawing animations - different speeds so they don't move together */
@keyframes snakeMove1 {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -160;
  }
}

@keyframes snakeMove2 {
  0% {
    stroke-dashoffset: -20;
  }
  100% {
    stroke-dashoffset: -180;
  }
}

@keyframes snakeMove3 {
  0% {
    stroke-dashoffset: -40;
  }
  100% {
    stroke-dashoffset: -200;
  }
}

/* =============================================
   Rocket Cursor for Hero Section
   ============================================= */
.ama-rocket-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  width: 28px;
  height: 28px;
  opacity: 0;
  transition: opacity 0.2s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.ama-rocket-cursor.active {
  opacity: 1;
}

.ama-rocket-svg {
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
  animation: rocketHover 2s ease-in-out infinite;
}

@keyframes rocketHover {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(-3px);
  }
}

/* Hero section rocket cursor */
.ama-rocket-cursor-section {
  cursor: none;
}

.ama-rocket-cursor-section * {
  cursor: none;
}

/* Hide default cursor on snake cursor sections */
.ama-snake-cursor-section {
  cursor: none;
}

.ama-snake-cursor-section * {
  cursor: none;
}

/* But allow pointer cursor on clickable elements */
.ama-snake-cursor-section a,
.ama-snake-cursor-section button,
.ama-snake-cursor-section input,
.ama-snake-cursor-section select,
.ama-snake-cursor-section textarea,
.ama-snake-cursor-section [onclick] {
  cursor: none;
}

/* Glass pane cursor - override snake cursor */
.ama-glass-pane,
.ama-snake-cursor-section .ama-glass-pane,
.ama-snake-cursor-section .ama-glass-pane * {
  cursor: pointer !important;
}

/* =============================================
   Hero Section
   ============================================= */
.ama-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--ama-dark);
}

.ama-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ama-hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(43, 125, 233, 0.3) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
              var(--ama-dark);
}

.ama-hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
    radial-gradient(2px 2px at 50px 160px, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.2), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Shining Stars with Light Plus Effect */
.ama-hero-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ama-star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: starShine 3s ease-in-out infinite;
}

.ama-star::before,
.ama-star::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
}

.ama-star::before {
  width: 2px;
  height: 16px;
  left: 1px;
  top: -6px;
  border-radius: 2px;
}

.ama-star::after {
  width: 16px;
  height: 2px;
  left: -6px;
  top: 1px;
  border-radius: 2px;
}

@keyframes starShine {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Shooting Star Animation */
.ama-shooting-star {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
}

.ama-shooting-star::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  left: 0;
  top: -3px;
  box-shadow: 0 0 10px 2px rgba(255,255,255,0.8);
}

@keyframes shootingStar {
  0% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(-25deg);
  }
  100% {
    opacity: 0;
    transform: translateX(-700px) translateY(300px) rotate(-25deg);
  }
}

.ama-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.ama-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43, 125, 233, 0.2);
  border: 1px solid rgba(91, 155, 213, 0.4);
  color: var(--ama-primary-light);
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.ama-hero-badge i {
  color: #60a5fa;
}

.ama-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.ama-highlight {
  background: var(--ama-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ama-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ama-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-ama-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ama-gradient);
  color: #fff;
  padding: 18px 36px;
  border-radius: 3px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(43, 125, 233, 0.4);
}

.btn-ama-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(43, 125, 233, 0.5);
  color: #fff;
}

.btn-ama-hero-main {
  padding: 22px 48px;
  font-size: 1.25rem;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(43, 125, 233, 0.5);
}

.btn-ama-hero-main:hover {
  box-shadow: 0 14px 50px rgba(43, 125, 233, 0.6);
}

.btn-ama-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 18px 36px;
  border-radius: 3px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-ama-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.ama-hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.ama-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.ama-trust-item i {
  color: var(--ama-success);
  font-size: 1.1rem;
}

/* =============================================
   Section Headers & Tags
   ============================================= */
.ama-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.ama-section-header.light {
  color: #fff;
}

.ama-section-header.light h2 {
  color: #fff;
}

.ama-section-header.light .ama-section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.ama-section-tag {
  display: inline-block;
  background: var(--ama-gradient);
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.ama-section-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ama-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.ama-section-subtitle {
  font-size: 1.15rem;
  color: var(--ama-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   Problem Section
   ============================================= */
.ama-problem {
  padding: 100px 0;
  background: #f8fafc;
}

.ama-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ama-problem-card {
  background: #fff;
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.ama-problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.ama-problem-icon {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ama-problem-icon i {
  font-size: 1.75rem;
  color: var(--ama-secondary-dark);
}

.ama-problem-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ama-dark);
  margin-bottom: 12px;
}

.ama-problem-card p {
  color: var(--ama-text-light);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   Solution Section with Ripple Effect
   ============================================= */
.ama-solution {
  padding: 100px 0;
  background: var(--ama-dark);
  position: relative;
  overflow: hidden;
}

.ama-solution-ripple-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ama-solution-ripple {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(43, 125, 233, 0.6);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: amaRippleExpand 2.5s ease-out forwards;
}

@keyframes amaRippleExpand {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
    border-width: 3px;
    border-color: rgba(59, 130, 246, 0.8);
  }
  50% {
    opacity: 0.5;
    border-color: rgba(43, 125, 233, 0.4);
  }
  100% {
    width: 1200px;
    height: 1200px;
    opacity: 0;
    border-width: 1px;
    border-color: rgba(43, 125, 233, 0);
  }
}

.ama-solution .container {
  position: relative;
  z-index: 1;
}

/* Solution Cards Grid */
.ama-solution-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 30px;
}

/* Solution Card */
.ama-solution-card {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Corner bracket accents */
.ama-solution-card::before,
.ama-solution-card::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(255, 255, 255, 0.3);
  border-style: solid;
  transition: all 0.4s ease;
  z-index: 0;
}

.ama-solution-card::before {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}

.ama-solution-card::after {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
}

.ama-solution-card:hover::before,
.ama-solution-card:hover::after {
  width: 30px;
  height: 30px;
  border-color: rgba(255, 255, 255, 0.7);
}

/* Card hover */
.ama-solution-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Solution Card Icon */
.ama-solution-card-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.ama-solution-card:hover .ama-solution-card-icon {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ama-solution-card-icon i {
  font-size: 2.2rem;
  color: #ffffff;
  transition: color 0.4s ease;
}

.ama-solution-card:hover .ama-solution-card-icon i {
  color: var(--ama-accent, #5b9bd5);
}

/* Solution Card Title */
.ama-solution-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

/* Solution Card Description */
.ama-solution-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}

.ama-solution-card:hover .ama-solution-card-desc {
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
  .ama-solution-card {
    padding: 30px 20px;
    min-height: 200px;
  }

  .ama-solution-card-icon {
    width: 64px;
    height: 64px;
  }

  .ama-solution-card-icon i {
    font-size: 1.8rem;
  }

  .ama-solution-card-title {
    font-size: 1.1rem;
  }
}

/* =============================================
   Curriculum Section
   ============================================= */
.ama-curriculum {
  padding: 100px 0;
  background: #fff;
}

.ama-curriculum-phase {
  margin-bottom: 60px;
}

.ama-phase-header {
  text-align: center;
  margin-bottom: 40px;
}

.ama-phase-tag {
  display: inline-block;
  background: var(--ama-gradient-gold);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.ama-phase-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ama-dark);
  margin-bottom: 8px;
}

.ama-phase-header p {
  color: var(--ama-text-light);
  font-size: 1.1rem;
}

.ama-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.ama-module-card {
  background: #f8fafc;
  border-radius: 4px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.ama-module-card.ama-visible {
  opacity: 1;
  transform: translateY(0);
}

.ama-module-card:hover {
  border-color: var(--ama-primary);
  box-shadow: 0 8px 30px rgba(43, 125, 233, 0.15);
}

.ama-module-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(43, 125, 233, 0.1);
  line-height: 1;
}

.ama-module-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ama-dark);
  margin-bottom: 16px;
  padding-right: 50px;
}

.ama-module-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ama-module-card ul li {
  color: var(--ama-text);
  font-size: 0.95rem;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid #e2e8f0;
}

.ama-module-card ul li:last-child {
  border-bottom: none;
}

.ama-module-card ul li::before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--ama-primary);
  font-size: 0.85rem;
}

.ama-phase-outcome {
  background: linear-gradient(135deg, rgba(43, 125, 233, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: 4px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(43, 125, 233, 0.2);
}

.ama-phase-outcome i {
  font-size: 2rem;
  color: var(--ama-primary);
}

.ama-phase-outcome strong {
  color: var(--ama-dark);
}

/* =============================================
   Bonuses Section
   ============================================= */
.ama-bonuses {
  padding: 100px 0;
  background: var(--ama-dark);
}

.ama-value-tag {
  color: var(--ama-secondary);
}

.ama-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.ama-bonus-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.ama-bonus-card.ama-visible {
  opacity: 1;
  transform: translateY(0);
}

.ama-bonus-card:hover {
  transform: translateY(-5px);
  border-color: var(--ama-primary);
}

.ama-bonus-card.featured {
  background: linear-gradient(135deg, rgba(43, 125, 233, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
  border-color: var(--ama-primary);
}

.ama-bonus-value {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--ama-gradient-gold);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.ama-bonus-number {
  color: var(--ama-primary-light);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.ama-bonus-card h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-right: 80px;
}

.ama-bonus-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.ama-bonus-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ama-bonus-card ul li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ama-bonus-card ul li i {
  color: #60a5fa;
  flex-shrink: 0;
}

.ama-bonuses-total {
  text-align: center;
  padding: 16px 32px;
  background: var(--ama-gradient-gold);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.ama-bonuses-total-wrapper {
  text-align: center;
  margin-top: 40px;
}

.ama-bonuses-total span {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
}

.ama-bonuses-total strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

/* =============================================
   Instructor Section
   ============================================= */
.ama-instructor {
  padding: 100px 0;
  background: #f8fafc;
}

.ama-instructor-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.ama-instructor-image {
  text-align: center;
  position: sticky;
  top: 140px;
}

.ama-instructor-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--ama-gradient);
  padding: 5px;
  margin: 0 auto 24px;
  box-shadow: 0 10px 40px rgba(43, 125, 233, 0.3);
}

.ama-instructor-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.ama-instructor-photo i {
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.9);
}

.ama-instructor-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ama-stat {
  text-align: center;
}

.ama-stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ama-primary);
}

.ama-stat-label {
  font-size: 0.85rem;
  color: var(--ama-text-light);
}

.ama-instructor-bio h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ama-dark);
  margin-bottom: 8px;
}

.ama-instructor-bio h3 {
  font-size: 1.5rem;
  color: var(--ama-primary);
  margin-bottom: 8px;
}

.ama-instructor-credential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #4285f4;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.1) 0%, rgba(52, 168, 83, 0.1) 100%);
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.ama-instructor-credential i {
  color: #4285f4;
  font-size: 1.1rem;
}

.ama-instructor-bio p {
  color: var(--ama-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ama-instructor-highlights {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.ama-instructor-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--ama-text);
}

.ama-instructor-highlights li i {
  color: var(--ama-success);
  font-size: 1.1rem;
  margin-top: 3px;
}

.ama-instructor-promise {
  background: linear-gradient(135deg, rgba(43, 125, 233, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  padding: 20px;
  border-radius: 3px;
  border-left: 4px solid var(--ama-primary);
  font-style: italic;
}

.ama-instructor-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.ama-instructor-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ama-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.ama-instructor-social a:hover {
  background: var(--ama-primary);
  transform: translateY(-3px);
}

/* =============================================
   Who Is This For Section
   ============================================= */
.ama-who-for {
  padding: 100px 0;
  background: #fff;
}

.ama-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.ama-who-card {
  border-radius: 4px;
  padding: 36px;
}

.ama-who-card.yes {
  background: linear-gradient(135deg, rgba(43, 125, 233, 0.1) 0%, rgba(43, 125, 233, 0.05) 100%);
  border: 2px solid rgba(43, 125, 233, 0.3);
}

.ama-who-card.no {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 2px solid rgba(239, 68, 68, 0.3);
}

.ama-who-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.ama-who-card.yes h3 {
  color: var(--ama-success);
}

.ama-who-card.no h3 {
  color: var(--ama-danger);
}

.ama-who-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ama-who-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--ama-text);
  line-height: 1.6;
}

.ama-who-card ul li:last-child {
  border-bottom: none;
}

.ama-who-card ul li strong {
  color: var(--ama-dark);
}

.ama-requirements {
  background: #f8fafc;
  border-radius: 4px;
  padding: 40px;
  text-align: center;
}

.ama-requirements h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ama-dark);
  margin-bottom: 32px;
  /* Prevent layout shift */
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

/* Question Mark styling (before reveal) */
.ama-skills-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 50px;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2b7de9 0%, #60a5fa 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: questionPulse 1.5s ease-in-out infinite;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ama-skills-question.hidden {
  opacity: 0;
  transform: scale(0);
  width: 0;
  min-width: 0;
  overflow: hidden;
}

.ama-skills-question:hover {
  transform: scale(1.1);
}

@keyframes questionPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(-5deg);
  }
  75% {
    transform: scale(1.1) rotate(5deg);
  }
}

/* Animated ZERO letters container */
.ama-zero-letters {
  display: inline-flex;
  gap: 4px;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.5s ease;
}

.ama-zero-letters.visible {
  max-width: 150px;
}

.ama-zero-letter {
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(20px) scale(0);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ama-zero-letter.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ama-zero-letter:nth-child(1) {
  background: linear-gradient(135deg, #1e5fba 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ama-zero-letter:nth-child(2) {
  background: linear-gradient(135deg, #2b7de9 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ama-zero-letter:nth-child(3) {
  background: linear-gradient(135deg, #5b9bd5 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ama-zero-letter:nth-child(4) {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ama-zero-letter.visible {
  animation: letterBounce 0.5s ease-out;
}

/* Continuous wave animation after wall is smashed */
.ama-zero-letter.waving {
  animation: letterWave 2s ease-in-out infinite;
}

.ama-zero-letter.waving:nth-child(1) {
  animation-delay: 0s;
}

.ama-zero-letter.waving:nth-child(2) {
  animation-delay: 0.15s;
}

.ama-zero-letter.waving:nth-child(3) {
  animation-delay: 0.3s;
}

.ama-zero-letter.waving:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes letterWave {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

@keyframes letterBounce {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0) rotate(-10deg);
  }
  60% {
    transform: translateY(-10px) scale(1.2) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

/* =============================================
   Glass Reveal Animation
   ============================================= */
.ama-glass-container {
  position: relative;
  margin-top: 32px;
  perspective: 1000px;
  min-height: 200px;
  border-radius: 4px;
  overflow: visible;
}

/* Content preview behind the glass (visible but blurred by glass overlay) */
.ama-glass-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 32px;
  text-align: left;
  transition: padding 0.4s ease, gap 0.4s ease;
}

.ama-glass-preview .ama-req-col {
  padding: 20px;
  border-radius: 3px;
}

.ama-glass-preview .ama-req-col.dont-need {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.ama-glass-preview .ama-req-col.do-need {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.ama-glass-preview .ama-req-col h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ama-glass-preview .ama-req-col.dont-need h5 { color: #dc2626; }
.ama-glass-preview .ama-req-col.do-need h5 { color: #059669; }
.ama-glass-preview .ama-req-col h5 i { font-size: 1.1rem; }

.ama-glass-preview .ama-req-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ama-glass-preview .ama-req-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 4px;
  border-radius: 3px;
  font-size: 0.9rem;
  color: #4a5568;
}

.ama-glass-preview .ama-req-col.dont-need ul li i { color: #ef4444; }
.ama-glass-preview .ama-req-col.do-need ul li i { color: #10b981; }

/* Glass pane overlay */
.ama-glass-pane {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

/* Glass reflection shine streak */
.ama-glass-pane::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.5) 47%,
    rgba(255,255,255,0.7) 50%,
    rgba(255,255,255,0.5) 53%,
    rgba(255,255,255,0) 65%,
    rgba(255,255,255,0) 100%
  );
  background-size: 250% 100%;
  background-position: 110% 0;
  z-index: 1;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

/* Subtle frosted noise texture */
.ama-glass-pane::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
  border-radius: 4px;
}

.ama-glass-pane:hover {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.4);
  animation: glassVibrate 0.6s ease-in-out infinite;
}

/* Shine sweeps across on hover */
.ama-glass-pane:hover::before {
  background-position: -60% 0;
}

.ama-glass-pane.breaking,
.ama-glass-pane.breaking:hover {
  animation: glassShatter 0.5s ease-out forwards !important;
}

@keyframes glassVibrate {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-1px); }
  40% { transform: translateX(1px); }
  60% { transform: translateX(-0.5px); }
  80% { transform: translateX(0.5px); }
}

/* Glass pane text */
.ama-glass-text {
  position: relative;
  z-index: 5;
  color: var(--ama-dark, #5b9bd5);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Hint button */
.ama-glass-hint {
  position: relative;
  z-index: 5;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--ama-primary, #2b7de9) 0%, var(--ama-primary-light, #5b9bd5) 100%);
  padding: 10px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(43, 125, 233, 0.25);
  animation: glassHintPulse 2.5s ease-in-out infinite;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ama-glass-pane:hover .ama-glass-hint {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(43, 125, 233, 0.35);
}

.ama-glass-hint i {
  font-size: 1.1rem;
}

@keyframes glassHintPulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(43, 125, 233, 0.25);
  }
  50% {
    box-shadow: 0 4px 24px rgba(43, 125, 233, 0.4), 0 0 0 3px rgba(43, 125, 233, 0.1);
  }
}

/* Progressive glass crack layers */
.ama-glass-cracks {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.ama-glass-crack {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Crack 1 - Initial impact star (small radial lines from center) */
.ama-glass-crack-1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cg stroke='rgba(255,255,255,0.9)' stroke-width='1.5' fill='none'%3E%3Cpath d='M200 100L192 78'/%3E%3Cpath d='M200 100L213 74'/%3E%3Cpath d='M200 100L226 94'/%3E%3Cpath d='M200 100L222 118'/%3E%3Cpath d='M200 100L206 126'/%3E%3Cpath d='M200 100L186 118'/%3E%3Cpath d='M200 100L176 106'/%3E%3Cpath d='M200 100L178 85'/%3E%3C/g%3E%3Ccircle cx='200' cy='100' r='2.5' fill='rgba(255,255,255,0.6)'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Crack 2 - Extended radials reaching outward */
.ama-glass-crack-2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cg stroke='rgba(255,255,255,0.8)' stroke-width='1.5' fill='none'%3E%3Cpath d='M192 78L185 52L180 28'/%3E%3Cpath d='M213 74L228 46L238 22'/%3E%3Cpath d='M226 94L258 86L292 80'/%3E%3Cpath d='M222 118L244 138L262 162'/%3E%3Cpath d='M206 126L212 156L210 186'/%3E%3Cpath d='M186 118L164 136L140 152'/%3E%3Cpath d='M176 106L148 110L118 116'/%3E%3Cpath d='M178 85L160 72L136 60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Crack 3 - Branching off main radials */
.ama-glass-crack-3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cg stroke='rgba(255,255,255,0.65)' stroke-width='1' fill='none'%3E%3Cpath d='M185 52L170 46'/%3E%3Cpath d='M185 52L192 36'/%3E%3Cpath d='M228 46L244 52'/%3E%3Cpath d='M228 46L218 32'/%3E%3Cpath d='M258 86L262 70'/%3E%3Cpath d='M258 86L272 96'/%3E%3Cpath d='M244 138L260 132'/%3E%3Cpath d='M244 138L236 152'/%3E%3Cpath d='M212 156L196 160'/%3E%3Cpath d='M212 156L224 168'/%3E%3Cpath d='M164 136L156 124'/%3E%3Cpath d='M164 136L172 150'/%3E%3Cpath d='M148 110L144 96'/%3E%3Cpath d='M148 110L136 118'/%3E%3Cpath d='M160 72L168 60'/%3E%3Cpath d='M160 72L148 78'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Crack 4 - Concentric ring connections between radials */
.ama-glass-crack-4 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cg stroke='rgba(255,255,255,0.55)' stroke-width='1' fill='none'%3E%3Cpath d='M192 78L202 76L213 74'/%3E%3Cpath d='M213 74L220 82L226 94'/%3E%3Cpath d='M226 94L224 106L222 118'/%3E%3Cpath d='M222 118L214 122L206 126'/%3E%3Cpath d='M206 126L196 124L186 118'/%3E%3Cpath d='M186 118L180 112L176 106'/%3E%3Cpath d='M176 106L177 96L178 85'/%3E%3Cpath d='M178 85L185 82L192 78'/%3E%3Cpath d='M185 52L206 42L228 46'/%3E%3Cpath d='M228 46L248 60L258 86'/%3E%3Cpath d='M258 86L254 112L244 138'/%3E%3Cpath d='M244 138L230 150L212 156'/%3E%3Cpath d='M212 156L188 148L164 136'/%3E%3Cpath d='M164 136L152 122L148 110'/%3E%3Cpath d='M148 110L152 90L160 72'/%3E%3Cpath d='M160 72L170 58L185 52'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Crack 5 - Dense spider web (full fracture pattern) */
.ama-glass-crack-5 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cg stroke='rgba(255,255,255,0.85)' stroke-width='2' fill='none'%3E%3Cpath d='M180 28L176 8'/%3E%3Cpath d='M238 22L244 2'/%3E%3Cpath d='M292 80L320 74'/%3E%3Cpath d='M262 162L276 182'/%3E%3Cpath d='M210 186L208 198'/%3E%3Cpath d='M140 152L122 168'/%3E%3Cpath d='M118 116L92 120'/%3E%3Cpath d='M136 60L118 48'/%3E%3C/g%3E%3Cg stroke='rgba(255,255,255,0.4)' stroke-width='0.8' fill='none'%3E%3Cpath d='M170 46L158 38L150 24'/%3E%3Cpath d='M244 52L260 48L272 36'/%3E%3Cpath d='M272 96L290 100L308 96'/%3E%3Cpath d='M260 132L278 126L290 114'/%3E%3Cpath d='M224 168L236 180L244 194'/%3E%3Cpath d='M196 160L184 172L168 180'/%3E%3Cpath d='M156 124L142 116L126 108'/%3E%3Cpath d='M136 118L120 130L106 144'/%3E%3Cpath d='M168 60L172 44L178 30'/%3E%3Cpath d='M148 78L132 82L118 90'/%3E%3Cpath d='M180 28L208 16L238 22'/%3E%3Cpath d='M238 22L270 38L292 80'/%3E%3Cpath d='M292 80L284 122L262 162'/%3E%3Cpath d='M262 162L240 178L210 186'/%3E%3Cpath d='M210 186L175 174L140 152'/%3E%3Cpath d='M140 152L126 136L118 116'/%3E%3Cpath d='M118 116L124 88L136 60'/%3E%3Cpath d='M136 60L155 38L180 28'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Show cracks progressively on hover */
.ama-glass-pane:hover .ama-glass-crack-1 { opacity: 1; }
.ama-glass-pane:hover .ama-glass-crack-2 { opacity: 1; transition-delay: 0.5s; }
.ama-glass-pane:hover .ama-glass-crack-3 { opacity: 1; transition-delay: 1s; }
.ama-glass-pane:hover .ama-glass-crack-4 { opacity: 1; transition-delay: 1.5s; }
.ama-glass-pane:hover .ama-glass-crack-5 { opacity: 1; transition-delay: 2s; }

/* Frost sparkle particles on hover */
.ama-frost-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(200,225,255,0.4) 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 12;
  opacity: 0;
}

.ama-frost-particle.active {
  animation: frostDrift 1.4s ease-out forwards;
}

.ama-frost-particle:nth-child(odd).active {
  animation: frostDriftAlt 1.3s ease-out forwards;
}

@keyframes frostDrift {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
  15% {
    opacity: 0.9;
    transform: translate(3px, -3px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(12px, -18px) scale(0.2);
  }
}

@keyframes frostDriftAlt {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
  15% {
    opacity: 0.85;
    transform: translate(-4px, -2px) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translate(-15px, -22px) scale(0.15);
  }
}

/* Glass shatter animation */
@keyframes glassShatter {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
  8% {
    filter: brightness(1.6);
  }
  25% {
    opacity: 0.85;
    transform: scale(1.005);
    filter: brightness(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.98);
    filter: brightness(0.7);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
}

/* Glass shard particles */
.ama-glass-shard {
  position: absolute;
  pointer-events: none;
  z-index: 100;
  background: linear-gradient(
    135deg,
    hsla(var(--shard-hue, 210), var(--shard-sat, 30%), var(--shard-lit, 92%), 0.75) 0%,
    rgba(220, 235, 255, 0.4) 50%,
    hsla(var(--shard-hue, 210), var(--shard-sat, 30%), var(--shard-lit, 92%), 0.65) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.12),
    inset 0 1px 3px rgba(255, 255, 255, 0.6),
    0 0 6px hsla(var(--shard-hue, 210), 60%, 80%, 0.3);
  transform: scale(var(--size-scale, 1));
}

.ama-glass-shard.large {
  width: 58px;
  height: 46px;
}

.ama-glass-shard.medium {
  width: 38px;
  height: 30px;
}

.ama-glass-shard.small {
  width: 24px;
  height: 18px;
  border: none;
}

.ama-glass-shard.tiny {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 1px;
  background: hsla(var(--shard-hue, 210), var(--shard-sat, 30%), var(--shard-lit, 92%), 0.55);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.ama-glass-shard.dust {
  width: 4px;
  height: 4px;
  border: none;
  border-radius: 50%;
  background: hsla(var(--shard-hue, 210), 50%, 90%, 0.6);
  box-shadow: 0 0 3px hsla(var(--shard-hue, 210), 60%, 85%, 0.4);
}

.ama-glass-shard.animate {
  animation: shardFall 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.ama-glass-shard.large.animate {
  animation: shardFallHeavy 1.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

.ama-glass-shard.tiny.animate {
  animation: shardFallLight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.ama-glass-shard.dust.animate {
  animation: shardFallLight 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes shardFall {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
    filter: brightness(1);
  }
  15% {
    opacity: 1;
    transform: translate(calc(var(--tx, 0) * 0.2), calc(var(--ty, 100px) * 0.05)) rotate(calc(var(--rot, 180deg) * 0.15)) scale(1.05);
    filter: brightness(1.4);
  }
  50% {
    filter: brightness(0.95);
  }
  75% {
    filter: brightness(1.2);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx, 0), var(--ty, 100px)) rotate(var(--rot, 180deg)) scale(0.4);
    filter: brightness(0.8);
  }
}

@keyframes shardFallHeavy {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
    filter: brightness(1);
  }
  10% {
    opacity: 1;
    transform: translate(calc(var(--tx, 0) * 0.1), calc(var(--ty, 100px) * 0.03)) rotate(calc(var(--rot, 180deg) * 0.08)) scale(1.08);
    filter: brightness(1.5);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx, 0), var(--ty, 100px)) rotate(var(--rot, 180deg)) scale(0.5);
    filter: brightness(0.7);
  }
}

@keyframes shardFallLight {
  0% {
    opacity: 0.8;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  20% {
    opacity: 0.9;
    transform: translate(calc(var(--tx, 0) * 0.3), calc(var(--ty, 100px) * 0.1)) rotate(calc(var(--rot, 180deg) * 0.25)) scale(0.9);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx, 0), var(--ty, 100px)) rotate(var(--rot, 180deg)) scale(0.15);
  }
}

.ama-glass-pane.hidden {
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  opacity: 0;
}

/* After glass breaks, elevate preview to full styling */
.ama-glass-container.revealed .ama-glass-preview {
  padding: 0;
  gap: 32px;
}

.ama-glass-container.revealed .ama-glass-preview .ama-req-col {
  padding: 28px;
  border-radius: 4px;
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}

.ama-glass-container.revealed .ama-glass-preview .ama-req-col.dont-need {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.ama-glass-container.revealed .ama-glass-preview .ama-req-col.do-need {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Curriculum Lock Overlay */
.ama-curriculum-lock-overlay {
  position: relative;
  margin-top: 40px;
}

.ama-curriculum-locked-phases {
  max-height: 350px;
  overflow: hidden;
  position: relative;
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
}

/* Gradient fade at bottom of locked content */
.ama-curriculum-locked-phases::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.8) 60%, #fff 100%);
  pointer-events: none;
}

.ama-curriculum-lock-banner {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  z-index: 10;
  background: var(--ama-gradient);
  border-radius: 4px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow:
    0 15px 50px rgba(43, 125, 233, 0.4),
    0 5px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.ama-curriculum-lock-banner:hover {
  transform: translate(-50%, -50%) rotate(-1deg) scale(1.02);
  box-shadow:
    0 20px 60px rgba(43, 125, 233, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.25);
}

.ama-curriculum-lock-banner > i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.ama-curriculum-lock-banner .lock-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.ama-curriculum-lock-banner .btn-ama-unlock {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ama-primary);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Icon inside the button - ensure it's visible (primary color) */
.ama-curriculum-lock-banner .btn-ama-unlock i {
  color: var(--ama-primary);
  font-size: 1.1rem;
}

.ama-curriculum-lock-banner .btn-ama-unlock:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #fff 0%, #f0f0ff 100%);
}

.ama-req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: left;
}

.ama-req-col {
  padding: 28px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.ama-req-col.dont-need {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(248, 113, 113, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.ama-req-col.do-need {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(52, 211, 153, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.ama-req-col h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ama-req-col.dont-need h5 {
  color: #dc2626;
}

.ama-req-col.do-need h5 {
  color: #059669;
}

.ama-req-col h5 i {
  font-size: 1.3rem;
}

.ama-req-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ama-req-col ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.ama-req-col.dont-need ul li {
  background: rgba(239, 68, 68, 0.05);
  color: #7f1d1d;
}

.ama-req-col.dont-need ul li:hover {
  background: rgba(239, 68, 68, 0.1);
  transform: translateX(5px);
}

.ama-req-col.do-need ul li {
  background: rgba(16, 185, 129, 0.05);
  color: #14532d;
}

.ama-req-col.do-need ul li:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: translateX(5px);
}

.ama-req-col ul li i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ama-req-col.dont-need ul li i {
  color: #ef4444;
}

.ama-req-col.do-need ul li i {
  color: #10b981;
}

/* =============================================
   Outcomes Section
   ============================================= */
.ama-outcomes {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.ama-outcomes .ama-section-header h2 {
  color: var(--ama-dark);
}

.ama-outcomes .ama-section-header .ama-section-tag {
  background: var(--ama-gradient);
  color: #fff;
}

.ama-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Center the last row if it has fewer items */
.ama-outcomes-grid .ama-outcome-card:last-child:nth-child(3n+1) {
  grid-column: 2; /* Center single item on last row */
}

.ama-outcome-card {
  background: #fff;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(43, 125, 233, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ama-outcome-card.ama-visible {
  opacity: 1;
  transform: translateY(0);
}

.ama-outcome-card:hover {
  transform: translateY(-5px);
  border-color: var(--ama-primary);
  box-shadow: 0 12px 40px rgba(43, 125, 233, 0.15);
}

.ama-outcome-icon {
  width: 72px;
  height: 72px;
  border-radius: 4px;
  background: var(--ama-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ama-outcome-icon i {
  font-size: 2rem;
  color: #fff;
}

.ama-outcome-card h4 {
  color: var(--ama-dark);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.ama-outcome-card p {
  color: var(--ama-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Success Milestones Section (replacement for timeline) */
.ama-success-milestones {
  background: #fff;
  border-radius: 6px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(43, 125, 233, 0.1);
}

.ama-success-milestones::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ama-gradient);
}

.ama-success-milestones h3 {
  text-align: center;
  color: var(--ama-dark);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 48px;
}

.ama-milestones-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.ama-milestone-item {
  flex: 0 1 calc(25% - 18px);
  min-width: 200px;
}

.ama-milestone-item {
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  border-radius: 4px;
  border: 1px solid rgba(43, 125, 233, 0.1);
  transition: all 0.3s ease;
}

.ama-milestone-item:hover {
  background: #fff;
  transform: translateY(-5px);
  border-color: var(--ama-primary);
  box-shadow: 0 10px 30px rgba(43, 125, 233, 0.15);
}

.ama-milestone-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--ama-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ama-milestone-icon i {
  font-size: 1.75rem;
  color: #fff;
}

.ama-milestone-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--ama-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.ama-milestone-label {
  color: var(--ama-text);
  font-size: 0.95rem;
  font-weight: 500;
}

.ama-milestone-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.ama-milestone-item.ama-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   Testimonials Section
   ============================================= */
.ama-testimonials {
  padding: 100px 0;
  background: #f8fafc;
}

.ama-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.ama-testimonial-card {
  background: #fff;
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.ama-testimonial-card.ama-visible {
  opacity: 1;
  transform: translateY(0);
}

.ama-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.ama-testimonial-stars {
  margin-bottom: 16px;
}

.ama-testimonial-stars i {
  color: var(--ama-secondary);
  font-size: 1.1rem;
}

.ama-testimonial-text {
  color: var(--ama-text);
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.ama-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ama-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ama-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ama-author-avatar i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.ama-author-info strong {
  display: block;
  color: var(--ama-dark);
  font-weight: 600;
}

.ama-author-info span {
  font-size: 0.9rem;
  color: var(--ama-text-light);
}

.ama-results-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  background: var(--ama-dark);
  border-radius: 4px;
  padding: 40px;
}

.ama-result-stat {
  text-align: center;
}

.ama-result-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--ama-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ama-result-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* =============================================
   FAQ Section
   ============================================= */
.ama-faq {
  padding: 100px 0;
  background: #fff;
}

.ama-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.ama-faq-item {
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ama-faq-item:hover {
  border-color: var(--ama-primary);
}

.ama-faq-item.active {
  border-color: var(--ama-primary);
  box-shadow: 0 8px 30px rgba(43, 125, 233, 0.15);
}

.ama-faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.ama-faq-question span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ama-dark);
  padding-right: 20px;
}

.ama-faq-question i {
  color: var(--ama-primary);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.ama-faq-item.active .ama-faq-question i {
  transform: rotate(180deg);
}

.ama-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.ama-faq-item.active .ama-faq-answer {
  max-height: 500px;
}

.ama-faq-answer p {
  padding: 0 24px 24px;
  color: var(--ama-text);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   Pricing Section
   ============================================= */
.ama-pricing {
  padding: 100px 0;
  background: var(--ama-dark);
}

/* Consultation Card */
.ama-consultation-card {
  max-width: 600px;
  margin: 0 auto 48px;
  background: #fff;
  border-radius: 6px;
  padding: 48px;
  text-align: center;
  position: relative;
}

.ama-consultation-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--ama-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.ama-consultation-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.ama-consultation-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ama-dark);
  margin-bottom: 16px;
}

.ama-consultation-card > p {
  color: var(--ama-text);
  line-height: 1.7;
  margin-bottom: 32px;
}

.ama-consultation-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
  margin-bottom: 32px;
}

.ama-cf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ama-text);
}

.ama-cf-item i {
  color: var(--ama-success);
  flex-shrink: 0;
}

.ama-consultation-note {
  color: var(--ama-text-light);
  font-size: 0.9rem;
  margin-top: 16px;
  margin-bottom: 0;
}

.ama-contact-options {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.ama-contact-option {
  text-align: center;
}

.ama-contact-option i {
  font-size: 2rem;
  color: var(--ama-primary-light);
  display: block;
  margin-bottom: 8px;
}

.ama-contact-option span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.ama-contact-option a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.ama-contact-option a:hover {
  color: var(--ama-primary-light);
}

.btn-ama-enroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: var(--ama-gradient);
  color: #fff;
  padding: 20px 40px;
  border-radius: 3px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(43, 125, 233, 0.4);
  margin-bottom: 24px;
}

.btn-ama-enroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(43, 125, 233, 0.5);
  color: #fff;
}

.ama-pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ama-pf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ama-text);
}

.ama-pf-item i {
  color: var(--ama-success);
}

.ama-guarantee {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 40px;
  border: 2px solid rgba(16, 185, 129, 0.3);
}

.ama-guarantee-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--ama-success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.ama-guarantee-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.ama-guarantee h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.ama-guarantee p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* =============================================
   Urgency Section
   ============================================= */
.ama-urgency {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: #4a8ac4;
}

.ama-urgency-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
  opacity: 0.4;
}

.ama-urgency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 30, 50, 0.85) 0%, rgba(20, 20, 40, 0.9) 100%);
  z-index: 1;
}

.ama-urgency .container {
  position: relative;
  z-index: 2;
}

.ama-urgency-content h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ama-urgency-points {
  max-width: 900px;
  margin: 0 auto;
}

.ama-urgency-point {
  display: flex;
  gap: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.ama-urgency-point:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.ama-urgency-point i {
  font-size: 2.5rem;
  color: #60a5fa;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.ama-urgency-point h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.ama-urgency-point p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

/* =============================================
   Final CTA Section
   ============================================= */
.ama-final-cta {
  padding: 100px 0;
  background: var(--ama-dark);
}

.ama-final-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ama-final-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.ama-final-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.ama-choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.ama-choice {
  padding: 28px;
  border-radius: 4px;
  text-align: left;
}

.ama-choice.option-a {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.ama-choice.option-b {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.ama-choice h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.ama-choice p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.ama-final-message {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 32px;
}

.ama-final-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 40px;
}

.ama-final-bullets span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.ama-final-bullets span i {
  color: var(--ama-success);
}

.btn-ama-final {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ama-gradient-gold);
  color: #ffffff;
  padding: 24px 48px;
  border-radius: 4px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(43, 125, 233, 0.4);
  margin-bottom: 32px;
}

.btn-ama-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(43, 125, 233, 0.5);
  color: #ffffff;
}

.ama-final-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.7);
}

.ama-final-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.ama-final-icons div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.ama-final-icons div i {
  color: var(--ama-primary-light);
}

/* =============================================
   Responsive Styles
   ============================================= */
@media (max-width: 992px) {
  .ama-hero-title {
    font-size: 2.5rem;
  }

  .ama-section-header h2 {
    font-size: 2rem;
  }

  .ama-instructor-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ama-instructor-bio {
    text-align: left;
  }

  .ama-instructor-highlights li {
    justify-content: flex-start;
  }

  .ama-who-grid {
    grid-template-columns: 1fr;
  }

  .ama-outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }

  /* Center single item on last row for 2-column layout */
  .ama-outcomes-grid .ama-outcome-card:last-child:nth-child(2n+1) {
    grid-column: 1 / -1;
    max-width: 340px;
    margin: 0 auto;
  }

  .ama-outcomes-grid .ama-outcome-card:last-child:nth-child(3n+1) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .ama-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .ama-hero-title {
    font-size: 2rem;
  }

  .ama-hero-subtitle {
    font-size: 1.1rem;
  }

  .ama-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-ama-primary,
  .btn-ama-secondary {
    width: 100%;
    justify-content: center;
  }

  .ama-hero-trust {
    flex-direction: column;
    gap: 16px;
  }

  .ama-section-header h2 {
    font-size: 1.75rem;
  }

  .ama-modules-grid,
  .ama-bonuses-grid,
  .ama-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .ama-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .ama-outcomes-grid .ama-outcome-card:last-child:nth-child(3n+1) {
    grid-column: auto; /* Reset centering on mobile */
  }

  .ama-phase-outcome {
    flex-direction: column;
    text-align: center;
  }

  .ama-urgency-point {
    flex-direction: column;
    text-align: center;
  }

  .ama-urgency-point i {
    margin: 0 auto;
  }

  .ama-urgency-content h2 {
    font-size: 1.75rem;
  }

  .ama-pricing-card {
    padding: 32px 24px;
  }

  .ama-price-amount {
    font-size: 4rem;
  }

  .ama-pricing-features {
    grid-template-columns: 1fr;
  }

  .ama-final-content h2 {
    font-size: 1.75rem;
  }

  .btn-ama-final {
    padding: 20px 32px;
    font-size: 1.1rem;
  }

  .ama-final-trust {
    flex-direction: column;
    gap: 8px;
  }

  .ama-final-icons {
    flex-direction: column;
    gap: 16px;
  }

  .ama-milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ama-glass-preview {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .ama-glass-text {
    font-size: 1.2rem;
    text-align: center;
    padding: 0 16px;
  }

  .ama-glass-hint {
    font-size: 0.8rem;
    padding: 8px 20px;
  }

  .ama-glass-shard.large {
    width: 42px;
    height: 34px;
  }

  .ama-glass-shard.medium {
    width: 28px;
    height: 22px;
  }

  .ama-glass-shard.dust {
    width: 3px;
    height: 3px;
  }

  .ama-req-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ama-req-col {
    padding: 20px;
  }

  .ama-req-col ul li {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .ama-req-col h5 {
    font-size: 1rem;
  }

  .ama-curriculum-lock-banner {
    padding: 16px 20px;
    min-width: auto;
    width: auto;
    max-width: 90%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    transform: translate(-50%, -50%) rotate(-2deg);
  }

  .ama-curriculum-lock-banner .lock-text {
    font-size: 0.95rem;
  }

  .ama-curriculum-lock-banner .btn-ama-unlock {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .ama-curriculum-locked-phases {
    max-height: 280px;
  }

  .ama-instructor-image {
    position: static;
  }
}

@media (max-width: 480px) {
  .ama-hero-title {
    font-size: 1.75rem;
  }

  .ama-hero-badge {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .ama-module-card,
  .ama-bonus-card {
    padding: 24px;
  }

  .ama-instructor-stats {
    gap: 16px;
  }

  .ama-choices {
    grid-template-columns: 1fr;
  }

  .ama-milestones-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ama-milestone-item {
    padding: 24px 16px;
  }

  .ama-milestone-number {
    font-size: 2rem;
  }

  .ama-fancy-zero {
    font-size: 1.5rem;
  }

  .ama-curriculum-lock-banner h4 {
    font-size: 1.25rem;
  }

  .ama-curriculum-lock-banner p {
    font-size: 0.95rem;
  }

  .ama-faq-question span {
    font-size: 0.95rem;
  }

  .ama-requirements {
    padding: 24px 16px;
  }

  .ama-req-col {
    padding: 16px;
  }

  .ama-req-col ul li {
    padding: 8px 12px;
    font-size: 0.9rem;
    gap: 10px;
  }

  .ama-req-col ul li i {
    font-size: 1rem;
  }

  .ama-req-col h5 {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .ama-req-grid {
    gap: 16px;
  }
}
