/* CSS Variables - Pricing Theme */
:root {
  --primary-color: #6366f1;
  --secondary-color: #ec4899;
  --accent-color: #8b5cf6;
  --background-light: #f8fafc;
  --background-dark: #1e293b;
  --text-light: #ffffff;
  --text-dark: #475569;
  --text-accent: #6366f1;
  --border-color: #e2e8f0;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --border-radius: 8px;
  --border-radius-large: 16px;
}

/* Remove motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Pricing Section Styles */
.pricing-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.section-header .text {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Pricing Cards */
.pricing-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 1; /* Always visible */
  transform: translateY(0); /* Reset transform */
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #c7d2fe;
}

.pricing-card.featured {
  border-color: #6366f1;
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.1);
  transform: scale(1.02);
}

.pricing-card.featured::before {
  transform: scaleX(1);
}

/* Card Header */
.pricing-card__header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

/* Card Titles */
.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 5px 0;
}

.card-subtitle {
  font-size: 1rem;
  color: #6366f1;
  font-weight: 600;
  margin: 0;
}

/* Card Badge Styles */
.card-badge {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.card-badge.popular {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
}

/* Pricing Card Specific Titles - Only for pricing section */
.pricing-card .card-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.5px;
}

.pricing-card .card-subtitle {
  font-size: 1.4rem;
  color: #6366f1;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Executive Card Specific Titles */
.executive-card .executive-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.5px;
}

.executive-card .executive-subtitle {
  font-size: 1.3rem;
  color: #6366f1;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Agent Image */
.agent-image {
  height: 285px;
  margin: 0 auto 20px auto;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.agent-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
  position: relative;
  z-index: 2;
}

/* Only show placeholder when image is not loaded or doesn't exist */
.agent-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #94a3b8;
  border-radius: 12px;
  z-index: 1;
}

/* Hide placeholder when image is successfully loaded */
.agent-image img[src]:not([src=""]) ~ ::before,
.agent-image.has-image::before {
  display: none;
}

/* Agent image placeholders for different types - only show when no image */
.agent-image.receptionist:not(.has-image)::before {
  content: '👩‍💼';
}

.agent-image.customer-service:not(.has-image)::before {
  content: '🎧';
}

.agent-image.sales:not(.has-image)::before {
  content: '💼';
}

.agent-image.executive:not(.has-image)::before {
  content: '👨‍💻';
}

/* Ensure images show properly when loaded */
.agent-image.has-image img {
  opacity: 1;
  visibility: visible;
}

/* Executive avatar specific styling */
.executive-avatar .agent-image {
  width: 140px;
  height: 330px;
  margin: 0;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.executive-avatar .agent-image img {
  object-fit: contain;
  object-position: center;
}

/* Stats */
.card-stats {
  margin-bottom: 25px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.stat-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.stat-label {
  font-size: 0.9rem;
  color: #475569;
  font-weight: 600;
  flex: 1;
}

.stat-value {
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 700;
  text-align: right;
  min-width: 80px;
}

/* Remove old stat-bar styles */
.stat-bar {
  display: none;
}

.stat-fill {
  display: none;
}

/* Description */
.card-description {
  margin-bottom: 25px;
}

.card-description p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Features */
.card-features {
  margin-bottom: 30px;
}

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

.card-features li {
  padding: 8px 0;
  color: #475569;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
}

.card-features li:last-child {
  border-bottom: none;
}

/* Pricing */
.card-pricing {
  text-align: center;
  margin-bottom: 25px;
  padding: 20px 0;
  border-top: 1px solid #f1f5f9;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}

.currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: #6366f1;
  margin-right: 4px;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: #64748b;
  margin-left: 4px;
}

.price-note {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

/* CTA Button */
.card-cta {
  width: 100%;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  transition: all 0.3s ease;
}

.pricing-card.featured .card-cta {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-color: transparent;
}

/* CTA Section - Enhanced Design */
.pricing-cta-section {
  margin-top: 80px;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.cta-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  border: 3px solid transparent;
  background-clip: padding-box;
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 25px 50px -12px rgba(99, 102, 241, 0.25),
    0 0 0 1px rgba(99, 102, 241, 0.05);
}

.cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899, #f59e0b);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
}

.cta-content::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(99, 102, 241, 0.1),
    transparent,
    rgba(139, 92, 246, 0.1),
    transparent,
    rgba(236, 72, 153, 0.1),
    transparent
  );
  animation: rotate 8s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px auto;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 
    0 15px 35px rgba(99, 102, 241, 0.4),
    0 0 20px rgba(99, 102, 241, 0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1e293b 0%, #6366f1 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -1px;
}

.cta-subtitle {
  color: #64748b;
  margin-bottom: 40px;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.cta-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 25px 20px;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: all 0.3s ease;
}

.cta-feature:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-5px);
}

.cta-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.cta-feature-text {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-button {
  padding: 20px 50px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 16px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 15px 35px rgba(99, 102, 241, 0.3),
    0 0 20px rgba(99, 102, 241, 0.2);
  min-width: 280px;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 20px 40px rgba(99, 102, 241, 0.4),
    0 0 30px rgba(99, 102, 241, 0.3);
  color: white;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 30px;
  background: rgba(99, 102, 241, 0.05);
  border: 2px solid rgba(99, 102, 241, 0.1);
  border-radius: 50px;
  color: #6366f1;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-phone:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.2);
  color: #5b5bf6;
  transform: scale(1.05);
}

.cta-phone-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
  .cta-content {
    padding: 40px 25px;
    margin: 0 15px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-subtitle {
    font-size: 1.1rem;
  }
  
  .cta-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-button {
    padding: 18px 40px;
    font-size: 1rem;
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  .cta-content {
    padding: 30px 20px;
  }
  
  .cta-title {
    font-size: 1.7rem;
  }
  
  .cta-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .cta-button {
    padding: 16px 30px;
    min-width: 200px;
  }
  
  .cta-phone {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Executive Agent Section - New Horizontal Design */
.executive-agent-section {
  margin-top: 60px;
  padding: 0 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.executive-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 3px solid #6366f1;
  border-radius: 24px;
  padding: 35px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 25px 50px -12px rgba(99, 102, 241, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.executive-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg, 
    #6366f1 0%, 
    #8b5cf6 20%, 
    #ec4899 40%, 
    #f59e0b 60%, 
    #10b981 80%, 
    #6366f1 100%
  );
  background-size: 400% 100%;
  animation: rainbowFlow 8s ease-in-out infinite;
}

@keyframes rainbowFlow {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 200% 50%; }
  75% { background-position: 300% 50%; }
}

.executive-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899, #f59e0b);
  border-radius: 26px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.executive-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 35px 70px -12px rgba(99, 102, 241, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.8);
  border-color: #8b5cf6;
}

.executive-card:hover::after {
  opacity: 0.1;
}

.executive-card__badge {
  position: absolute;
  right: 50px;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ef4444 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 
    0 10px 30px rgba(245, 158, 11, 0.5),
    0 0 20px rgba(245, 158, 11, 0.3);
  z-index: 10;
  transform: rotate(-2deg);
  animation: floatBadge 3s ease-in-out infinite;
}

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

.executive-card__content {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.executive-avatar {
  position: relative;
}

.executive-avatar .agent-image {
  width: 140px;
  height: 330px;
  margin: 0;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.executive-avatar .agent-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.executive-info {
  flex: 1;
  min-width: 0;
}

.executive-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0 0 8px 0;
  line-height: 1;
  background: linear-gradient(135deg, #1e293b 0%, #6366f1 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.executive-subtitle {
  font-size: 1.2rem;
  color: #6366f1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
  opacity: 0.9;
}

.executive-description {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
  max-width: 500px;
}

.executive-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}

.feature-item:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: #6366f1;
  transform: translateX(3px);
}

.feature-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.executive-stats {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 25px 20px;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.stats-header h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 15px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.executive-stats .stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 8px;
}

.executive-stats .stat-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.executive-stats .stat-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

.executive-stats .stat-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #6366f1;
}

.executive-pricing {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  min-width: 220px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
}

.executive-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

.executive-pricing .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.executive-pricing .currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-right: 5px;
}

.executive-pricing .amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.executive-pricing .period {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 5px;
}

.executive-pricing .price-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.executive-cta {
  width: 100%;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

.executive-cta:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Executive Card */
@media (max-width: 1200px) {
  .executive-card__content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .executive-info {
    order: 1;
  }
  
  .executive-avatar {
    order: 0;
    justify-self: center;
  }
  
  .executive-stats,
  .executive-pricing {
    order: 2;
    justify-self: center;
    max-width: 300px;
  }
  
  .executive-features {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .executive-agent-section {
    padding: 0 15px;
    margin-top: 40px;
  }
  
  .executive-card {
    padding: 25px 20px;
  }
  
  .executive-card__content {
    gap: 25px;
  }
  
  .executive-title {
    font-size: 2.2rem;
  }
  
  .executive-subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .executive-features {
    grid-template-columns: 1fr;
  }
  
  .executive-card__badge {
    position: static;
    margin: 0 auto 20px auto;
    transform: none;
    animation: none;
  }
  
  .executive-avatar .agent-image {
    width: 120px;
    height: 285px;
  }
}

@media (max-width: 480px) {
  .executive-card {
    padding: 20px 15px;
  }
  
  .executive-title {
    font-size: 1.8rem;
  }
  
  .executive-description {
    font-size: 1rem;
  }
  
  .executive-pricing .amount {
    font-size: 2.5rem;
  }
  
  .executive-avatar .agent-image {
    width: 100px;
    height: 240px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 0;
  }
  
  .section-header .section-title {
    font-size: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .pricing-card {
    padding: 25px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .cta-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .section-header .section-title {
    font-size: 1.75rem;
  }
  
  .pricing-card {
    padding: 20px;
  }
  
  .stat-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .stat-bar {
    width: 100%;
    margin-left: 0;
  }
  
  .amount {
    font-size: 2rem;
  }
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Ensure cards are always visible */
.pricing-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.pricing-card.featured {
  opacity: 1 !important;
  transform: scale(1.02) !important;
}

/* Hover effects override */
.pricing-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.02) !important;
}
@keyframes buttonGlow {
  0%, 100% { transform: translateX(-100%) skewX(-15deg); }
  50% { transform: translateX(200%) skewX(-15deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .character-selection__title {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  
  .character-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .character-portrait {
    width: 150px;
    height: 180px;
  }
  
  .cta-frame {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .character-selection__title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .character-card {
    padding: 15px;
  }
  
  .character-portrait {
    width: 120px;
    height: 150px;
  }
}
  
  .character-card {
    padding: 15px;
  }
  
  .character-portrait {
    width: 120px;
    height: 150px;
  }
}
  
  .character-card {
    padding: 15px;
  }
  
  .character-portrait {
    width: 120px;
    height: 150px;
  }
}
  
  .character-card {
    padding: 15px;
  }
  
  .character-portrait {
    width: 120px;
    height: 150px;
  }
}