@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   Kalyxi Outbound Roundtables - Stylesheet
   PREMIUM ENHANCED VERSION
   ============================================ */

/* CSS Variables - Kalyxi Brand */
:root {
  /* Colors */
  --color-primary: #7146F6;
  --color-deep-blue: #1E40AF;
  --color-magenta: #DB2777;
  --color-cyan: #06B6D4;
  
  --color-black: #0F172A;
  --color-gray-dark: #334155;
  --color-gray-medium: #64748B;
  --color-gray-light: #E2E8F0;
  --color-off-white: #F8FAFC;
  --color-white: #FFFFFF;
  
  /* Typography */
  --font-headline: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #7146F6 0%, #DB2777 100%);
  --gradient-hero: linear-gradient(135deg, #1E40AF 0%, #7146F6 50%, #DB2777 100%);
  --gradient-accent: linear-gradient(90deg, #06B6D4 0%, #7146F6 100%);
  --gradient-text: linear-gradient(135deg, #7146F6 0%, #DB2777 50%, #06B6D4 100%);
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 72px;
  --spacing-xxl: 120px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-gray-dark);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Scroll Progress Bar
   ============================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--gradient-primary);
  z-index: 9999;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(113, 70, 246, 0.5);
}

/* ============================================
   Floating CTA Button
   ============================================ */

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta button {
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(113, 70, 246, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-cta button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(113, 70, 246, 0.6);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(113, 70, 246, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(113, 70, 246, 0.7);
  }
}

/* ============================================
   Container & Layout
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xxl) 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-light {
  background: var(--color-white);
  position: relative;
}

.section-dark {
  background: var(--color-black);
  color: var(--color-off-white);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(113, 70, 246, 0.1) 0%, transparent 50%);
  animation: moveBackground 15s ease-in-out infinite;
}

@keyframes moveBackground {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(25%); }
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-gradient {
  background: var(--gradient-hero);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.section-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.section-gradient h2,
.section-gradient h3 {
  color: var(--color-white);
}

/* ============================================
   Typography with Gradient Effects
   ============================================ */

.section-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--spacing-md);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.section-dark .section-title,
.section-gradient .section-title {
  background: var(--color-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: none;
}

.section-subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--color-gray-medium);
}

.body-copy {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.body-copy.centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.body-copy p {
  margin-bottom: var(--spacing-sm);
}

/* ============================================
   Buttons with Enhanced Effects
   ============================================ */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(113, 70, 246, 0.3);
}

.btn-primary:hover {
  background: #5d3ac4;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(113, 70, 246, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 14px 30px;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ============================================
   Hero Section with Parallax
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/desktop_hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #E8F0F7 100%);
  opacity: 0.8;
  z-index: 1;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(13, 55, 86, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(13, 55, 86, 0.08) 0%, transparent 50%);
  z-index: 2;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #0D3756;
  padding: var(--spacing-lg) var(--spacing-md);
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  max-width: 200px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 auto var(--spacing-lg) !important;
  display: block !important;
  animation: fadeInUp 1s ease 0.1s backwards;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 150px;
    margin-bottom: var(--spacing-md);
  }
}

.hero-headline {
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: fadeInUp 1s ease 0.2s backwards, gradientShift 8s ease infinite;
}

.hero-subheadline {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  color: #0D3756;
  text-shadow: 0 2px 8px rgba(13, 55, 86, 0.1);
  animation: fadeInUp 1s ease 0.4s backwards;
}

.hero .btn-primary {
  margin-bottom: var(--spacing-md);
  font-size: 18px;
  padding: 18px 40px;
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.5);
  border: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 0.6s backwards, subtleBounce 2s ease-in-out 2s infinite;
}

@keyframes subtleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero .btn-primary:hover {
  background: var(--color-off-white);
  color: var(--color-primary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.7);
}

.social-proof {
  font-size: 14px;
  margin-top: var(--spacing-md);
  color: #0D3756;
  text-shadow: 0 2px 8px rgba(13, 55, 86, 0.1);
  animation: fadeInUp 1s ease 0.8s backwards;
}

/* ============================================
   Context & Pain Section
   ============================================ */

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.evolution-points {
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--color-primary);
  padding: var(--spacing-md);
  border-radius: 8px;
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
}

.evolution-points:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(113, 70, 246, 0.2);
}

.evolution-points li {
  padding: var(--spacing-xs) 0;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0;
  animation: slideInLeft 0.6s ease forwards;
}

.evolution-points li:nth-child(1) { animation-delay: 0.1s; }
.evolution-points li:nth-child(2) { animation-delay: 0.2s; }
.evolution-points li:nth-child(3) { animation-delay: 0.3s; }
.evolution-points li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.pain-bullets {
  margin-top: var(--spacing-md);
}

.pain-bullets h3 {
  font-size: 20px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.pain-bullets ul li {
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-md);
  position: relative;
}

.pain-bullets ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Glassmorphism Visualization Card */
.visualization-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: var(--spacing-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.visualization-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(113, 70, 246, 0.2);
}

.visualization-card h4 {
  font-size: 20px;
  margin-bottom: var(--spacing-md);
  text-align: center;
  color: var(--color-black);
}

.efficiency-chart {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.chart-bar {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.bar-label {
  min-width: 140px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-dark);
}

.bar-fill {
  height: 32px;
  border-radius: 6px;
  transition: width 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  width: 0;
  position: relative;
  overflow: hidden;
}

.bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.bar-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gray-dark);
  min-width: 60px;
}

/* ============================================
   Cards with 3D Tilt Effect
   ============================================ */

.persona-card,
.topic-card,
.testimonial-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.persona-card:hover,
.topic-card:hover {
  transform: translateY(-10px) rotateX(5deg);
}

/* ============================================
   What Is Section
   ============================================ */

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.mockup-placeholder {
  background: var(--color-gray-dark);
  border-radius: 12px;
  padding: var(--spacing-md);
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mockup-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(113, 70, 246, 0.1) 0%, transparent 50%);
  animation: rotate 15s linear infinite;
}

.zoom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.zoom-participant {
  aspect-ratio: 4/3;
  background: var(--color-gray-medium);
  border-radius: 8px;
  border: 2px solid var(--color-primary);
  animation: fadeIn 0.6s ease backwards;
}

.zoom-participant:nth-child(1) { animation-delay: 0.1s; }
.zoom-participant:nth-child(2) { animation-delay: 0.2s; }
.zoom-participant:nth-child(3) { animation-delay: 0.3s; }
.zoom-participant:nth-child(4) { animation-delay: 0.4s; }
.zoom-participant:nth-child(5) { animation-delay: 0.5s; }
.zoom-participant:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.mockup-caption {
  text-align: center;
  margin-top: var(--spacing-md);
  color: var(--color-off-white);
  font-size: 14px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.value-bullets {
  margin-top: var(--spacing-md);
}

.value-bullets ul li {
  padding: var(--spacing-sm) 0;
  padding-left: var(--spacing-md);
  position: relative;
  color: var(--color-off-white);
  transition: all 0.3s ease;
}

.value-bullets ul li:hover {
  transform: translateX(5px);
}

.value-bullets ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-cyan);
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   Who It's For Section
   ============================================ */

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.persona-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-gray-light);
  border-radius: 12px;
  padding: var(--spacing-md);
  transition: all 0.4s ease;
  opacity: 0;
  animation: slideInUp 0.6s ease forwards;
}

.persona-card:nth-child(1) { animation-delay: 0.1s; }
.persona-card:nth-child(2) { animation-delay: 0.2s; }
.persona-card:nth-child(3) { animation-delay: 0.3s; }
.persona-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.persona-card:hover {
  transform: translateY(-10px) rotateX(5deg) scale(1.02);
  box-shadow: 0 20px 40px rgba(113, 70, 246, 0.2);
  border-color: var(--color-primary);
}

.persona-card h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.persona-function,
.persona-size {
  font-size: 14px;
  color: var(--color-gray-medium);
  margin-bottom: var(--spacing-xs);
}

.persona-focus {
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--color-gray-light);
  font-size: 14px;
}

.closing-copy {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-gray-dark);
  font-style: italic;
}

/* ============================================
   Why It Works Section
   ============================================ */

.formula-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.formula-step {
  text-align: center;
  padding: var(--spacing-md);
  opacity: 0;
  animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.formula-step:nth-child(1) { animation-delay: 0.1s; }
.formula-step:nth-child(2) { animation-delay: 0.2s; }
.formula-step:nth-child(3) { animation-delay: 0.3s; }
.formula-step:nth-child(4) { animation-delay: 0.4s; }
.formula-step:nth-child(5) { animation-delay: 0.5s; }

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  border: 3px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  animation: rotateIn 0.8s ease backwards;
}

.formula-step:hover .step-number {
  transform: scale(1.2) rotate(360deg);
  background: rgba(255, 255, 255, 0.4);
}

@keyframes rotateIn {
  from {
    transform: rotate(-180deg) scale(0);
  }
  to {
    transform: rotate(0deg) scale(1);
  }
}

.formula-step h3 {
  font-size: 20px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}

.formula-step p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}

/* ============================================
   Topics Section
   ============================================ */

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.topic-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-gray-light);
  border-radius: 12px;
  padding: var(--spacing-md);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(113, 70, 246, 0.1), transparent);
  transition: left 0.5s ease;
}

.topic-card:hover::before {
  left: 100%;
}

.topic-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(113, 70, 246, 0.2);
  border-color: var(--color-primary);
}

.topic-card h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  transition: all 0.3s ease;
}

.topic-card:hover h3 {
  transform: translateX(5px);
}

.topic-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-dark);
}

/* ============================================
   Facilitator Section - ENHANCED
   ============================================ */

.facilitator-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
  align-items: start;
}

.facilitator-image {
  position: relative;
}

.facilitator-image .image-placeholder {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  background-image: url('../images/christian_colgate.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--color-gray-medium);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: fadeInScale 0.8s ease;
  position: relative;
  z-index: 10;
  background-color: var(--color-gray-dark);
}

.facilitator-image .image-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--color-primary);
}

/* Stats Badges */
.facilitator-stats {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  justify-content: center;
}

.stat-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: var(--spacing-sm) var(--spacing-md);
  text-align: center;
  flex: 1;
  transition: all 0.3s ease;
  animation: slideInUp 0.8s ease 0.4s backwards;
}

.stat-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(113, 70, 246, 0.3);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-cyan);
  font-family: var(--font-headline);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number::after {
  content: '+';
  font-size: 20px;
  margin-left: 2px;
}

.stat-label {
  font-size: 12px;
  color: var(--color-off-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.facilitator-image .image-placeholder::before {
  display: none;
}

.facilitator-bio {
  animation: slideInRight 0.8s ease;
}

.facilitator-bio h3 {
  font-size: 32px;
  margin-bottom: var(--spacing-xs);
  color: var(--color-white);
}

.facilitator-title {
  font-size: 18px;
  color: var(--color-cyan);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.bio-content p {
  color: var(--color-off-white);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

/* Expertise Badges */
.expertise-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.expertise-badges .badge {
  background: rgba(113, 70, 246, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(113, 70, 246, 0.4);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease backwards;
}

.expertise-badges .badge:nth-child(1) { animation-delay: 0.5s; }
.expertise-badges .badge:nth-child(2) { animation-delay: 0.6s; }
.expertise-badges .badge:nth-child(3) { animation-delay: 0.7s; }
.expertise-badges .badge:nth-child(4) { animation-delay: 0.8s; }

.expertise-badges .badge:hover {
  background: rgba(113, 70, 246, 0.4);
  border-color: var(--color-cyan);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(113, 70, 246, 0.4);
}

/* LinkedIn Button */
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 12px 24px;
  background: #0A66C2;
  color: var(--color-white);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: var(--spacing-sm);
  animation: fadeIn 0.8s ease 0.9s backwards;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.linkedin-btn:hover {
  background: #004182;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4);
  color: var(--color-white);
}

.linkedin-btn svg {
  flex-shrink: 0;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(226, 232, 240, 0.95));
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  padding: var(--spacing-lg);
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  animation: slideInUp 0.6s ease forwards;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(113, 70, 246, 0.2);
  border-left-width: 6px;
}

.quote-mark {
  font-size: 48px;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
  font-family: Georgia, serif;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--color-gray-dark);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
  flex-grow: 1;
}

.testimonial-author {
  font-size: 14px;
  font-style: normal;
  color: var(--color-gray-medium);
  font-weight: 600;
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--color-gray-light);
}

/* ============================================
   Application Form - Enhanced
   ============================================ */

.application-form {
  max-width: 700px;
  margin: var(--spacing-lg) auto 0;
  background: rgba(255, 255, 255, 0.15);
  padding: var(--spacing-lg);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group.full-width {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--spacing-xs);
  transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border: 2px solid var(--color-white);
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.form-group.valid input,
.form-group.valid select,
.form-group.valid textarea {
  border-color: #10B981;
}

.form-group.valid::after {
  content: '✓';
  position: absolute;
  right: 12px;
  top: 38px;
  color: #10B981;
  font-weight: 700;
  font-size: 20px;
  animation: checkPop 0.3s ease;
}

@keyframes checkPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.char-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  text-align: right;
}

.error-message {
  font-size: 12px;
  color: #FCA5A5;
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #DC2626;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.form-group.error .error-message {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.application-form .btn-primary {
  width: 100%;
  margin-top: var(--spacing-md);
  font-size: 18px;
  padding: 18px;
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: visible;
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.application-form .btn-primary::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-primary);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.application-form .btn-primary:hover::before {
  opacity: 1;
  animation: borderPulse 1.5s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(113, 70, 246, 0.6), 0 0 40px rgba(219, 39, 119, 0.4);
  }
  50% { 
    box-shadow: 0 0 30px rgba(113, 70, 246, 0.8), 0 0 60px rgba(219, 39, 119, 0.6);
  }
}

.application-form .btn-primary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.8);
}

.application-form .btn-primary::after {
  display: none;
}

.application-form .btn-primary:disabled {
  background: var(--color-gray-medium);
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  display: none;
  animation: slideDown 0.5s ease;
}

.form-message.success {
  background: #10B981;
  color: var(--color-white);
  display: block;
}

.form-message.error {
  background: #DC2626;
  color: var(--color-white);
  display: block;
}

/* ============================================
   Confetti Animation
   ============================================ */

.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  position: fixed;
  animation: confettiFall 3s ease-out forwards;
  z-index: 10000;
}

@keyframes confettiFall {
  to {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--color-black);
  color: var(--color-off-white);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--color-gray-dark);
}

.footer-logo {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-gray-medium);
  max-width: 400px;
}

.footer-links {
  display: flex;
  gap: var(--spacing-md);
  justify-content: flex-end;
  align-items: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-off-white);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--color-gray-medium);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
  /* Hero - Use mobile image */
  .hero-background {
    background-image: url('../images/mobile_hero.png');
  }
  
  .content-grid,
  .two-column-layout,
  .facilitator-layout,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .facilitator-image {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .facilitator-image .image-placeholder {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1;
  }
  
  .facilitator-stats {
    width: 100%;
    max-width: 300px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .formula-steps {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .facilitator-image .image-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  
  .floating-cta {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-cta button {
    padding: 14px 24px;
    font-size: 14px;
  }
}