/* Educators Page Specific Styles */

/* Variables */
:root {
  --educators-primary-color: #9c24ff;
  --educators-primary-light: #b856ff;
  --educators-primary-dark: #7a1dd1;
  --educators-accent-color: #9c24ff;
  --educators-accent-light: #7a1dd1;
  --educators-text-light: #ffffff;
  --educators-text-dark: #1a1a1a;
  --educators-text-gray: #6b7280;
  --educators-bg-light: #f9fafb;
  --educators-bg-dark: #1a1a1a;
  --educators-transition-slow: 0.5s ease;
  --educators-transition-medium: 0.3s ease;
  --educators-transition-fast: 0.2s ease;
}

/* Base Styles */
/* Removed body font-family override to use global styles */
.educators-page {
  color: var(--educators-text-dark);
  line-height: 1.6;
}

.educators-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.highlight {
  color: var(--educators-accent-color);
  font-weight: 700;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all var(--educators-transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.primary-btn {
  background: var(--educators-accent-color);
  color: var(--educators-text-light);
  border: none;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.primary-btn:hover {
  background: var(--educators-accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.secondary-btn {
  background: transparent;
  color: var(--educators-text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.outline-btn {
  background: transparent;
  color: var(--educators-accent-color);
  border: 2px solid var(--educators-accent-color);
}

.outline-btn:hover {
  background: var(--educators-accent-color);
  color: var(--educators-text-light);
  transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 10%, #1a1a1a 90%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: all 8s ease;
  z-index: 1;
}

.hero-section:hover .hero-bg-image {
  transform: scale(1.03);
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(79, 70, 229, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(124, 58, 237, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(79, 70, 229, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(124, 58, 237, 0.3), transparent);
  background-size: 150px 150px;
  animation: particles 20s linear infinite;
  z-index: 2;
}

@keyframes particles {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-150px, -150px); }
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 60vh;
}

/* Hero Text */
.hero-text {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.3);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
  background: rgba(79, 70, 229, 0.15);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.title-line-1,
.title-line-2,
.title-line-3 {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 1s ease forwards;
}

.title-line-2 {
  animation-delay: 0.2s;
  margin: 0.5rem 0;
}

.title-line-3 {
  animation-delay: 0.4s;
  font-size: 0.6em;
  font-weight: 400;
  color: #d1d5db;
  margin-top: 1rem;
}

.title-highlight {
  background: linear-gradient(135deg, #9c24ff 0%, #190143 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #9c24ff 0%, #5309d3 100%);
  transform: translateX(-50%) scaleX(0);
  animation: underlineExpand 1s ease 0.8s forwards;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineExpand {
  to {
    transform: translateX(-50%) scaleX(1);
  }
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 3rem;
  max-width: 500px;
  text-align: center;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #9c24ff;
  color: white;
  box-shadow: 0 4px 15px rgba(87, 0, 157, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(85, 0, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 1s both;
  margin-top: 2rem;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #9c24ff !important;
  margin-bottom: 0.5rem;
  line-height: 1;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #9c24ff !important;
  background-clip: unset !important;
}

.hero-stats .stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 600px;
}

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

.visual-main {
  position: relative;
  width: 70%;
  height: 70%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.visual-main:hover {
  transform: translateY(-10px) rotateY(-5deg);
}

.visual-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visual-main:hover .visual-main-img {
  transform: scale(1.1);
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.metric-icon {
  font-size: 2rem;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #4f46e5;
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Floating Cards */
.visual-floating {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  width: 200px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  left: 5%;
  animation-delay: 2s;
}

.card-3 {
  top: 60%;
  right: 15%;
  animation-delay: 4s;
}

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

.floating-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.card-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.card-content p {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
}

.scroll-text {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.scroll-arrow {
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Section */
/* ===== FEATURES SECTION REDESIGN ===== */
.features-section {
  position: relative;
  padding: 120px 0 0 0;
  background: white;
  overflow: hidden;
}

.features-background {
  display: none;
}

.features-pattern {
  display: none;
}

.floating-elements {
  display: none;
}

.floating-shape {
  display: none;
}

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

.header-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
}

.tag-icon {
  font-size: 1.1rem;
}

.features-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.title-gradient {
  background: linear-gradient(135deg, #9c24ff 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Modern Features Grid */
.features-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

/* Main Feature Card */
.feature-main-card {
  background: transparent;
  border: none;
  border-radius: 24px;
  padding: 2.5rem;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.feature-main-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: none;
}

.main-card-visual {
  position: relative;
  height: 200px;
  background: transparent;
  border-radius: 16px;
  margin-bottom: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.visual-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.feature-main-card:hover .feature-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.3) 100%);
  z-index: 2;
}

.feature-main-card:hover .image-overlay {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.main-card-icon {
  font-size: 4rem;
  color: white;
  z-index: 3;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
}

.feature-main-card:hover .main-card-icon {
  transform: scale(1.1);
}

.visual-stats {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.stat-bubble {
  position: absolute;
  background: white;
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  animation: float 4s ease-in-out infinite;
}

.stat-1 {
  top: 20px;
  right: 20px;
  animation-delay: 0s;
}

.stat-2 {
  bottom: 20px;
  left: 20px;
  animation-delay: 2s;
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: #6366f1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-weight: 500;
}

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

.main-card-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.main-card-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.benefit-item i {
  color: #6366f1;
  font-size: 0.9rem;
}

/* Secondary Features Grid */
.features-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card-modern {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all var(--transition-medium);
  height: fit-content;
  box-shadow: none;
}

.feature-card-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: none;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.feature-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #9c24ff 0%, #000000 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.feature-badge {
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.card-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.card-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-metrics {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Features CTA - Full Width */
.features-cta-fullwidth {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.features-cta-fullwidth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.features-cta-fullwidth .container {
  position: relative;
  z-index: 2;
}

/* Features CTA */
.features-cta {
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  box-shadow: none;
  overflow: visible;
}

.features-cta::before {
  display: none;
}

.cta-content {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Creative Header Responsive Design */
@media (max-width: 968px) {
  .showcase-header {
    margin-top: 3rem;
    padding: 0 1rem;
  }
  
  .header-visual-wrapper {
    padding: 3rem 1.5rem;
  }
  
  .feature-highlights {
    gap: 1rem;
  }
  
  .title-line {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-visual-wrapper {
    padding: 2.5rem 1rem;
    margin: 0 1rem;
  }
  
  .feature-highlights {
    flex-direction: column;
    align-items: center;
  }
  
  .highlight-item {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .description-text {
    font-size: 1.1rem;
  }
  
  .cta-primary-modern {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .showcase-header {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
  
  .header-visual-wrapper {
    padding: 2rem 1rem;
    border-radius: 24px;
  }
  
  .title-line {
    font-size: 2rem;
  }
  
  .description-text {
    font-size: 1rem;
  }
  
  .header-badge-modern {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }
  
  .cta-primary-modern {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .trust-indicators {
    text-align: center;
  }
  
  .trust-text {
    font-size: 0.8rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-modern-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-secondary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 80px 0;
  }
  
  .features-header {
    margin-bottom: 3rem;
  }
  
  .features-title {
    font-size: 2rem;
  }
  
  .features-subtitle {
    font-size: 1rem;
  }
  
  .feature-main-card {
    padding: 2rem;
  }
  
  .main-card-visual {
    height: 150px;
  }
  
  .main-card-icon {
    font-size: 3rem;
  }
  
  .features-secondary {
    gap: 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .features-cta {
    padding: 3rem 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .features-cta .btn {
    width: 100%;
    max-width: 280px;
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .features-modern-grid {
    gap: 1.5rem;
  }
  
  .feature-main-card {
    padding: 1.5rem;
  }
  
  .main-card-visual {
    height: 120px;
    margin-bottom: 1.5rem;
  }
  
  .main-card-icon {
    font-size: 2.5rem;
  }
  
  .feature-card-modern {
    padding: 1.25rem;
  }
  
  .features-cta {
    padding: 2.5rem 1rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .features-cta .btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}

/* Product Showcase */
.product-showcase {
  position: relative;
  padding: 0 0 120px 0;
  background: white;
  overflow: hidden;
}

.showcase-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/php-hp-agentforce-lg-bg.webp') center/cover;
  opacity: 0.03;
  z-index: 0;
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.02) 0%, rgba(99, 102, 241, 0.01) 100%);
}

/* Section Header Redesign - Clean & Modern */
.showcase-header {
  text-align: center;
  margin-bottom: 80px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.badge-icon {
  font-size: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}

.title-accent {
  color: #9c24ff;
  display: block;
  margin-top: 10px;
}

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

.header-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #9c24ff 0%, #000000 100%);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #9c24ff;
}

.primary-btn:hover {
  background: linear-gradient(135deg, #7a1dd1 0%, #333333 100%);
  border-color: #7a1dd1;
  transform: translateY(-2px);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #9c24ff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #9c24ff;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: #9c24ff;
  color: white;
}

.social-proof {
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
}

/* Responsive Design for Header */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-description {
    font-size: 1.1rem;
  }
  
  .header-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .proof-stats {
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .showcase-header {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .primary-btn, .secondary-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

/* Showcase Content Styles */
.showcase-content {
  font-weight: 500;
}

.trust-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trust-stars i {
  color: #fbbf24;
  font-size: 0.9rem;
}

.rating-text {
  margin-left: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.badge-icon {
  font-size: 1.1rem;
}

.showcase-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.title-highlight {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-subtitle {
  display: block;
  font-size: 0.6em;
  font-weight: 400;
  color: var(--text-gray);
  margin-top: 0.5rem;
  opacity: 0.8;
}

.showcase-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Showcase Content */
.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Side - Product Demo */
.product-demo {
  position: relative;
}

.demo-container {
  position: relative;
  max-width: 500px;
}

.demo-screen {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-medium);
}

.demo-screen:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.demo-image {
  width: 100%;
  height: auto;
  display: block;
}

.demo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-medium);
}

.demo-screen:hover .demo-overlay {
  opacity: 1;
}

.play-button-large {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 28px;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.play-button-large:hover {
  transform: scale(1.1);
  background: var(--accent-color);
  color: white;
}

/* Floating UI Elements */
.floating-ui {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ui-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

.ui-card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.ui-card-2 {
  bottom: 30%;
  left: -15%;
  animation-delay: 2s;
}

.ui-card-3 {
  top: 60%;
  right: -20%;
  animation-delay: 4s;
}

.ui-icon {
  font-size: 1.5rem;
  min-width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui-content {
  display: flex;
  flex-direction: column;
}

.ui-title {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 500;
}

.ui-value {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 700;
}

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

/* Right Side - Features & Benefits */
.product-features {
  padding-left: 2rem;
}

.features-list {
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-medium);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
}

.feature-icon {
  min-width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.feature-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Call to Action */
.showcase-cta {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(99, 102, 241, 0.03) 100%);
  border-radius: 20px;
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.showcase-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.educators-showcase-stats .educators-stat {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  min-width: 100px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.educators-showcase-stats .educators-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.showcase-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .product-features {
    padding-left: 0;
  }
  
  .ui-card {
    display: none;
  }
  
  .demo-container {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .product-showcase {
    padding: 80px 0;
  }
  
  .showcase-header {
    margin-bottom: 3rem;
  }
  
  .showcase-title {
    font-size: 2rem;
  }
  
  .showcase-subtitle {
    font-size: 1rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .features-cta {
    padding: 3rem 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .features-cta .btn {
    width: 100%;
    max-width: 280px;
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .showcase-content {
    gap: 2rem;
  }
  
  .feature-item {
    margin-bottom: 1rem;
    padding: 1rem;
  }
  
  .showcase-cta {
    padding: 1.5rem;
  }
  
  .showcase-stats .stat {
    min-width: 80px;
    padding: 0.75rem;
  }
  
  .showcase-stats .stat-number {
    font-size: 1.5rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* AOS Custom Styles */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.features-cta .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all var(--transition-medium);
  min-width: 180px;
}

.features-cta .btn-primary {
  background: white;
  color: var(--accent-color);
  border: 2px solid white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.features-cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.features-cta .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.features-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ===== BENEFITS SECTION - UNIQUE NUMBERED DESIGN ===== */
.benefits-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f1f3ff 100%);
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
}

.benefits-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.benefits-header h2 {
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.benefits-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  font-weight: 400;
  font-style: italic;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.benefit-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  border-left: 5px solid #8B5CF6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-number {
  position: absolute;
  top: -15px;
  right: 30px;
  background: #8B5CF6;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.benefit-card h4 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 600;
  margin-top: 10px;
}

.benefit-card p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .benefits-section {
    padding: 80px 0;
  }
  
  .benefits-header h2 {
    font-size: 2.2rem;
  }
  
  .benefits-subtitle {
    font-size: 1.1rem;
  }
  
  .benefits-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
  }
  
  .benefit-card {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .benefits-section {
    padding: 60px 0;
  }
  
  .benefits-header {
    margin-bottom: 60px;
  }
  
  .benefits-header h2 {
    font-size: 1.9rem;
  }
  
  .benefit-card {
    padding: 30px 20px;
  }
  
  .benefit-card h4 {
    font-size: 1.3rem;
  }
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

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

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #9c24ff 0%, #000000 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.stories-header h2 {
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

/* Story Cards - All Same Size */
.story-card {
  background: white;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-4px);
  border-color: #9c24ff;
}

.story-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.05);
}

.story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  color: white;
}

.story-overlay .institution-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: inline-block;
  width: fit-content;
}

.story-overlay h4 {
  font-size: 1.1rem;
  color: white;
  margin: 0;
  font-weight: 600;
}

.story-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
  flex: 1;
}

.story-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.author strong {
  display: block;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.9rem;
}

.author span {
  color: #64748b;
  font-size: 0.8rem;
}

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

.impact-stat .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #9c24ff;
  line-height: 1;
}

.impact-stat .label {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Stories CTA */
.stories-cta {
  text-align: center;
  background: linear-gradient(135deg, #9c24ff 0%, #000000 100%);
  padding: 50px;
  border-radius: 20px;
  color: white;
}

.stories-cta p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 500;
}

.cta-button {
  background: white;
  color: #9c24ff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .success-stories-section {
    padding: 80px 0;
  }
  
  .stories-header h2 {
    font-size: 2.2rem;
  }
  
  .stories-header {
    margin-bottom: 60px;
  }
  
  .story-content {
    padding: 20px;
  }
  
  .story-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .stories-cta {
    padding: 40px 25px;
  }
}

@media (max-width: 576px) {
  .stories-header h2 {
    font-size: 1.9rem;
  }
  
  .story-card blockquote {
    font-size: 0.9rem;
    padding-left: 15px;
  }
  
  .story-card blockquote::before {
    font-size: 1.5rem;
  }
}
