.sophie-card {
  position: relative;
  width: 450px;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(0, 225, 255, 0.2);
  animation: fadeInRight 1s ease-out, float 3s ease-in-out infinite;
  border: 3px solid rgba(0, 225, 255, 0.3);
}

.sophie-image {
  height: 100%;
  object-fit: cover;
}

.sophie-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 12px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.badge-icon {
  font-size: 1.2rem;
}
/* PowerWiz Specific Styling */
.powerwiz-pricing {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 25px;
  border-radius: 16px;
  border: 2px solid #0ea5e9;
  margin-top: 30px;
}

.pricing-badge {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0369a1;
  margin-bottom: 10px;
}

.pricing-note {
  color: #0c4a6e;
  font-size: 1rem;
}

.btn-powerwiz-demo {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: transparent;
  border: 2px solid #1e50ff;
  color: #1e50ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-powerwiz-demo:hover {
  background: #1e50ff;
  color: white;
  transform: translateX(5px);
}

/* PowerWiz Demo Card */
.powerwiz-demo-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.demo-card-header {
  background: linear-gradient(135deg, #1e50ff, #9d4edd);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.demo-title {
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.demo-card-body {
  padding: 30px;
}

.demo-step {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.demo-step:hover {
  background: #e3f2fd;
  transform: translateX(5px);
}

.demo-step.active {
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  border: 2px solid #0ea5e9;
}

.step-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.step-info {
  flex: 1;
}

.step-label {
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 3px;
}

.step-desc {
  font-size: 0.9rem;
  color: #5a6c7d;
}

.demo-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: #00e1ff;
  margin: 10px 0;
  font-weight: 800;
}

/* PowerWiz Trust Indicators */
.powerwiz-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 80px;
  padding: 50px;
  background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
  border-radius: 24px;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e50ff;
  margin-bottom: 10px;
}

.trust-label {
  font-size: 0.9rem;
  color: #5a6c7d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .powerwiz-showcase {
    grid-template-columns: 1fr;
  }

  .powerwiz-demo-card {
    margin-top: 40px;
  }

  .powerwiz-trust {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 20px;
  }
}
/* Hero Section */
.ai-hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 60px;
  overflow: hidden;
}

.ai-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 225, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(157, 78, 221, 0.1) 0%, transparent 50%);
  animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.ai-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ai-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(0, 225, 255, 0.1);
  border: 1px solid rgba(0, 225, 255, 0.3);
  border-radius: 50px;
  color: #00e1ff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.ai-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 30px;
}

.gradient-text {
  background: linear-gradient(135deg, #00e1ff, #1e50ff, #9d4edd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.ai-hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary-ai {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #00e1ff, #1e50ff);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 225, 255, 0.3);
}

.btn-primary-ai:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 225, 255, 0.5);
}

.btn-secondary-ai {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-secondary-ai:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00e1ff;
}

.ai-stats {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00e1ff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* AI Orb Visual */
.ai-hero-visual {
  position: relative;
  width: 500px;
  height: 500px;
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ai-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 30% 30%, #00e1ff, #1e50ff, #9d4edd);
  border-radius: 50%;
  animation: rotate-orb 20s linear infinite, pulse-orb 4s ease-in-out infinite;
  box-shadow: 
    0 0 60px rgba(0, 225, 255, 0.5),
    0 0 120px rgba(157, 78, 221, 0.3),
    inset 0 0 60px rgba(255, 255, 255, 0.1);
}

@keyframes rotate-orb {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse-orb {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 60px rgba(0, 225, 255, 0.5);
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 100px rgba(0, 225, 255, 0.7);
  }
}

/* Service Sections */
.ai-service-section {
  padding: 120px 60px;
  background: #ffffff;
}

.alternate-bg {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.container-ai {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #00e1ff20, #9d4edd20);
  border: 1px solid #00e1ff;
  border-radius: 50px;
  color: #1e50ff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #0a1628;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #5a6c7d;
  max-width: 800px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.feature-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 225, 255, 0.15);
  border-color: #00e1ff;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #5a6c7d;
}

/* Demo Section */
.demo-section {
  text-align: center;
  margin-top: 80px;
}

.demo-card {
  display: inline-block;
  background: linear-gradient(135deg, #1e50ff, #9d4edd);
  padding: 50px 80px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(30, 80, 255, 0.3);
}

.demo-card h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 15px;
}

.demo-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.demo-button {
  display: inline-block;
  padding: 18px 50px;
  background: white;
  color: #1e50ff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.demo-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.demo-note {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* PowerWiz Showcase */
.powerwiz-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 30px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.benefits-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #00e1ff, #1e50ff);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.benefits-list strong {
  font-size: 1.1rem;
  color: #0a1628;
  display: block;
  margin-bottom: 5px;
}

.benefits-list p {
  color: #5a6c7d;
  line-height: 1.6;
}

.btn-powerwiz {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: linear-gradient(135deg, #1e50ff, #9d4edd);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-powerwiz:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(30, 80, 255, 0.3);
}

/* Automation Demo */
.automation-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px;
  background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
  border-radius: 24px;
}

.automation-step {
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00e1ff, #1e50ff);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 15px;
  box-shadow: 0 10px 30px rgba(0, 225, 255, 0.3);
}

.step-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0a1628;
}

.automation-arrow {
  font-size: 2rem;
  color: #00e1ff;
  font-weight: 800;
}

/* Use Cases Grid */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.usecase-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.usecase-card:hover {
  border-color: #00e1ff;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 225, 255, 0.15);
}

.usecase-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.usecase-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 15px;
}

.usecase-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a6c7d;
}

/* CTA Section */
.ai-cta-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #0a1628, #1e3a5f);
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  padding: 20px 50px;
  background: linear-gradient(135deg, #00e1ff, #1e50ff);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 225, 255, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 225, 255, 0.5);
}

.btn-cta-secondary {
  padding: 20px 50px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00e1ff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ai-hero-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 40px;
  }

  .ai-hero-content {
    max-width: 100%;
  }

  .ai-hero-visual {
    width: 300px;
    height: 300px;
    margin-top: 60px;
  }

  .ai-orb {
    width: 300px;
    height: 300px;
  }

  .ai-hero-cta {
    justify-content: center;
  }

  .ai-stats {
    justify-content: center;
  }

  .powerwiz-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ai-service-section {
    padding: 80px 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .automation-demo {
    flex-direction: column;
    padding: 40px 20px;
  }

  .automation-arrow {
    transform: rotate(90deg);
  }

  .usecases-grid {
    grid-template-columns: 1fr;
  }

  .ai-cta-section {
    padding: 80px 30px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}