/* ==========================================
   NEW SECTIONS STYLING - AI TRANSFORMATION
   ========================================== */

/* TWO PATHS SECTION - CLEAN REDESIGN */
.two-paths-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a0a1a 0%, #050510 50%, #0a0a1a 100%);
  position: relative;
  overflow: visible;
}

.two-paths-section > .container {
  overflow: visible;
}

.two-paths-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  height: 1400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, rgba(0, 212, 255, 0.02) 40%, transparent 70%);
  pointer-events: none;
}

/* Header */
.paths-header {
  text-align: center;
  margin-bottom: 3rem;
}

.paths-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(0, 212, 255, 0.08) 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #8b5cf6;
  margin-bottom: 1.5rem;
}

.paths-badge i {
  font-size: 0.85rem;
}

/* Paths Container - Clean Layout */
.paths-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  overflow: visible;
}

/* Center Divider */
.paths-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.divider-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.3), transparent);
  min-height: 80px;
}

.divider-or {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  color: #8b5cf6;
  margin: 1.5rem 0;
}

/* Clean Path Cards */
.path-card-clean {
  position: relative;
  flex: 1;
  max-width: 480px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(10, 15, 30, 0.9) 100%);
  border: 1px solid rgba(100, 180, 255, 0.1);
  border-radius: 24px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.path-card-clean:hover {
  transform: translateY(-6px);
}

.path-card-clean.workshops:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow:
    0 25px 60px rgba(0, 212, 255, 0.12),
    0 0 0 1px rgba(0, 212, 255, 0.1);
}

.path-card-clean.development:hover {
  border-color: rgba(236, 72, 153, 0.35);
  box-shadow:
    0 25px 60px rgba(236, 72, 153, 0.12),
    0 0 0 1px rgba(236, 72, 153, 0.1);
}

/* Subtle Glow Background */
.path-glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.path-card-clean.workshops .path-glow-bg {
  background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}

.path-card-clean.development .path-glow-bg {
  background: radial-gradient(ellipse at top, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
}

.path-card-clean:hover .path-glow-bg {
  opacity: 1;
}

/* Large Number */
.path-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.06;
  pointer-events: none;
}

.path-card-clean.workshops .path-number {
  color: #00d4ff;
}

.path-card-clean.development .path-number {
  color: #ec4899;
}

/* Card Content */
.path-content {
  position: relative;
  padding: 2.5rem;
  z-index: 2;
}

/* Clean Tag */
.path-tag-clean {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.path-card-clean.workshops .path-tag-clean {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: #00d4ff;
}

.path-card-clean.development .path-tag-clean {
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.25);
  color: #ec4899;
}

/* Clean Icon */
.path-icon-clean {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.path-card-clean.workshops .path-icon-clean {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: #00d4ff;
}

.path-card-clean.development .path-icon-clean {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.08) 100%);
  border: 1px solid rgba(236, 72, 153, 0.2);
  color: #ec4899;
}

.path-card-clean:hover .path-icon-clean {
  transform: scale(1.08);
}

.path-card-clean.workshops:hover .path-icon-clean {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.path-card-clean.development:hover .path-icon-clean {
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.2);
}

/* Title and Description */
.path-card-clean h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.path-card-clean p {
  font-size: 0.95rem;
  color: rgba(200, 215, 235, 0.65);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Features List */
.path-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.path-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(200, 215, 235, 0.8);
}

.path-features li i {
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.path-card-clean.workshops .path-features li i {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
}

.path-card-clean.development .path-features li i {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
}

/* Path Button */
.path-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.path-btn.cyan {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
}

.path-btn.cyan:hover {
  background: linear-gradient(135deg, #00d4ff 0%, #06b6d4 100%);
  border-color: transparent;
  color: #0a0a1a;
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
}

.path-btn.purple {
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.3);
  color: #ec4899;
}

.path-btn.purple:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.35);
}

.path-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.path-btn:hover i {
  transform: translateX(4px);
}

/* Discovery CTA */
.discovery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
  padding: 1.5rem 2.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.discovery-cta .cta-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(200, 215, 235, 0.85);
}

.discovery-cta .cta-content i {
  font-size: 1.25rem;
  color: #8b5cf6;
}

.discovery-cta .cta-content strong {
  color: #8b5cf6;
}

.cta-btn-discovery {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn-discovery:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.cta-btn-discovery i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.cta-btn-discovery:hover i {
  transform: translateX(3px);
}

/* Responsive Two Paths */
@media (max-width: 992px) {
  .paths-container {
    flex-direction: column;
    align-items: center;
  }

  .paths-divider {
    flex-direction: row;
    padding: 1rem 0;
  }

  .divider-line {
    width: auto;
    height: 2px;
    min-height: 0;
    min-width: 60px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
  }

  .divider-or {
    margin: 0 1.5rem;
  }

  .path-card-clean {
    max-width: 500px;
    width: 100%;
  }

  .discovery-cta {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .two-paths-section {
    padding: 80px 0;
  }

  .paths-header {
    margin-bottom: 3rem;
  }

  .path-content {
    padding: 2rem;
  }

  .path-card-clean h3 {
    font-size: 1.4rem;
  }

  .path-number {
    font-size: 3rem;
  }

  .path-icon-clean {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .discovery-cta {
    padding: 1.25rem 1.5rem;
    margin-top: 2.5rem;
  }

  .discovery-cta .cta-content {
    font-size: 0.9rem;
  }
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.path-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(15, 15, 30, 0.8) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.path-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.path-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.path-badge.recommended {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.path-badge.enterprise {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: white;
}

.path-icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.path-icon-wrapper i {
  font-size: 2.5rem;
  color: #00d4ff;
  z-index: 2;
  position: relative;
}

.path-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}

.path-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.path-subtitle {
  font-size: 1.1rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
}

.path-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius);
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.stat-source {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.stat-highlight {
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 600;
  margin-top: 0.25rem;
}

.path-description {
  margin-bottom: 1.5rem;
}

.path-description p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.path-features {
  margin-bottom: 2rem;
}

.path-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.path-feature i {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
}

.path-investment {
  text-align: center;
  padding: 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.investment-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.investment-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00d4ff;
}

.best-approach-callout {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.callout-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
}

.callout-icon i {
  font-size: 1.8rem;
  color: #ffc107;
}

.callout-content h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.callout-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* WORKSHOPS DETAILED SECTION */
.workshops-detailed-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.workshop-card {
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.workshop-card.featured {
  border-color: rgba(139, 92, 246, 0.5);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(15, 15, 30, 0.8) 100%);
}

.workshop-card.featured:hover {
  border-color: rgba(139, 92, 246, 0.8);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.workshop-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.workshop-duration {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.workshop-icon-wrapper {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
}

.workshop-icon-wrapper i {
  font-size: 2rem;
  color: #00d4ff;
}

.workshop-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.workshop-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.workshop-includes {
  margin-bottom: 1.5rem;
}

.workshop-includes h4 {
  font-size: 1rem;
  color: #00d4ff;
  margin-bottom: 0.75rem;
}

.workshop-includes ul {
  list-style: none;
  padding: 0;
}

.workshop-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.workshop-includes li i {
  color: #10b981;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.workshop-pricing {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.price-tag {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.25rem;
}

.price-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.workshop-benefits-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-lg);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.benefit-item i {
  font-size: 2rem;
  color: #10b981;
}

.benefit-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* AI REALITY SECTION (HONEST MESSAGING) */
.ai-reality-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
}

.reality-content {
  max-width: 1200px;
  margin: 0 auto;
}

.reality-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reality-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.2);
  border-radius: 50%;
}

.reality-icon i {
  font-size: 2.5rem;
  color: #ef4444;
}

.reality-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.reality-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.reality-card {
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
}

.reality-card.failure-reasons {
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.reality-card.success-factors {
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.reality-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reality-card.failure-reasons h3 {
  color: #ef4444;
}

.reality-card.success-factors h3 {
  color: #10b981;
}

.reason-list,
.success-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reason-item,
.success-item {
  display: flex;
  gap: 1rem;
}

.reason-icon,
.success-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.reason-icon {
  background: rgba(239, 68, 68, 0.1);
}

.reason-icon i {
  color: #ef4444;
}

.success-icon {
  background: rgba(16, 185, 129, 0.1);
}

.success-icon i {
  color: #10b981;
}

.reason-content h4,
.success-content h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.reason-content p,
.success-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.success-stats-bar {
  display: grid;
  grid-template-columns: auto 1px auto 1px auto;
  gap: 2rem;
  padding: 2rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--border-radius-lg);
  margin-bottom: 3rem;
  align-items: center;
}

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

.stat-big {
  font-size: 3rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.stat-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(139, 92, 246, 0.3);
}

.reality-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border-radius: var(--border-radius-lg);
}

.reality-cta h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.reality-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* TALENT SERVICES SECTION */
.talent-services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.talent-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.talent-card {
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.talent-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.talent-icon-wrapper {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.talent-icon-wrapper i {
  font-size: 2rem;
  color: #8b5cf6;
  z-index: 2;
}

.talent-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}

.talent-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.talent-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.talent-features {
  margin-bottom: 2rem;
}

.talent-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.talent-feature i {
  color: #8b5cf6;
  font-size: 1rem;
  flex-shrink: 0;
}

.talent-stats-callout {
  display: grid;
  grid-template-columns: auto 1px auto 1px auto;
  gap: 2rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-lg);
  align-items: center;
}

.talent-stat-item {
  text-align: center;
}

.talent-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 0.5rem;
}

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

.talent-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(139, 92, 246, 0.3);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .paths-grid,
  .workshops-grid,
  .reality-grid,
  .talent-services-grid {
    grid-template-columns: 1fr;
  }

  .success-stats-bar,
  .talent-stats-callout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-divider,
  .talent-stat-divider {
    width: 100%;
    height: 1px;
  }

  .best-approach-callout {
    flex-direction: column;
    text-align: center;
  }

  .reality-title {
    font-size: 2rem;
  }

  .stat-big {
    font-size: 2.5rem;
  }
}

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

/* ==========================================
   TWO PATHS - UNIFIED DESIGN
   ========================================== */

.discovery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.discovery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.15) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.discovery-badge i {
  color: #8b5cf6;
  font-size: 1.1rem;
}

.paths-unified {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.unified-path {
  flex: 1;
  max-width: 380px;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(15, 15, 30, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.unified-path.path-workshops {
  border-radius: 20px 0 0 20px;
  border-right: none;
}

.unified-path.path-development {
  border-radius: 0 20px 20px 0;
  border-left: none;
}

.unified-path:hover {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 30, 0.9) 100%);
  transform: translateY(-3px);
}

.unified-path.path-workshops:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: -10px 10px 30px rgba(0, 212, 255, 0.15);
}

.unified-path.path-development:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 10px 10px 30px rgba(139, 92, 246, 0.15);
}

.path-label {
  margin-bottom: 1rem;
}

.label-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.label-tag.quick {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
}

.label-tag.deep {
  background: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
}

.unified-path .path-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.path-workshops .path-icon {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
}

.path-development .path-icon {
  background: rgba(139, 92, 246, 0.15);
  color: #8b5cf6;
}

.unified-path h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.unified-path > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.path-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.path-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.path-points li i {
  color: #10b981;
  font-size: 0.85rem;
}

.path-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #00d4ff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.path-link.primary {
  color: #8b5cf6;
}

.path-link:hover {
  gap: 0.75rem;
}

.path-link i {
  transition: transform 0.3s ease;
}

.path-link:hover i {
  transform: translateX(3px);
}

/* Center Discovery Element */
.paths-center {
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 10;
}

.center-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8b5cf6 0%, #00d4ff 100%);
  border-radius: 50%;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
  animation: centerPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
  }
}

.center-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.3;
}

.center-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.line-left,
.line-right {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.5) 0%, rgba(139, 92, 246, 0.5) 100%);
}

.line-left {
  left: -30px;
}

.line-right {
  right: -30px;
}

/* Responsive Two Paths */
@media (max-width: 900px) {
  .paths-unified {
    flex-direction: column;
    gap: 0;
  }

  .unified-path {
    max-width: 100%;
  }

  .unified-path.path-workshops {
    border-radius: 20px 20px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
  }

  .unified-path.path-development {
    border-radius: 0 0 20px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
  }

  .paths-center {
    width: 100%;
    height: 100px;
    flex-direction: row;
    gap: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-top: none;
    border-bottom: none;
  }

  .center-icon {
    margin-bottom: 0;
  }

  .center-lines {
    display: none;
  }
}

/* ==========================================
   WHY QUALITY - 3D CAROUSEL
   ========================================== */

.quality-carousel-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

.quality-carousel-3d {
  perspective: 1200px;
  perspective-origin: 50% 50%;
  width: 100%;
  overflow: visible;
}

.carousel-scene {
  width: 100%;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  margin-bottom: 2rem;
}

.carousel-container {
  width: 320px;
  height: 360px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
}

/* Individual Carousel Cards - Transparent Glass Effect */
.carousel-card {
  position: absolute;
  width: 320px;
  height: 360px;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  transform-origin: center center;
}

.carousel-card .card-inner {
  width: 100%;
  height: 100%;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(100, 200, 255, 0.15);
  border-radius: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 32px rgba(100, 180, 255, 0.15),
    0 0 60px rgba(100, 180, 255, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.carousel-card:hover .card-inner {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(100, 200, 255, 0.3);
  box-shadow:
    0 12px 48px rgba(100, 180, 255, 0.25),
    0 0 80px rgba(100, 180, 255, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

/* Active card gets enhanced glow */
.carousel-card.active .card-inner {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(100, 200, 255, 0.4);
  box-shadow:
    0 16px 64px rgba(100, 180, 255, 0.3),
    0 0 100px rgba(100, 180, 255, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Card Icon Styles */
.card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  transition: all 0.4s ease;
}

.card-icon.problem {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
}

.card-icon.danger {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}

.card-icon.success {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.card-icon.highlight {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
  color: #00d4ff;
  box-shadow: 0 0 30px rgba(100, 180, 255, 0.25);
}

.carousel-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.card-stat {
  font-size: 1.35rem;
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.card-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 280px;
}

/* Navigation Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-nav-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(100, 200, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(100, 180, 255, 0.1);
}

.carousel-nav-btn:hover {
  background: rgba(100, 200, 255, 0.1);
  border-color: rgba(100, 200, 255, 0.5);
  color: #00d4ff;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(100, 180, 255, 0.2);
}

.carousel-dots {
  display: flex;
  gap: 0.75rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(100, 200, 255, 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  border-color: rgba(100, 200, 255, 0.6);
  box-shadow: 0 0 15px rgba(100, 180, 255, 0.3);
}

.carousel-dot.active {
  background: #00d4ff;
  border-color: #00d4ff;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* 3D Carousel Positions - Cards arranged in a circle */
/* Front card is fully visible and highlighted - NOT transparent */
.carousel-card[data-position="front"] {
  transform: translateZ(350px) scale(1);
  opacity: 1 !important;
  z-index: 10;
}

.carousel-card[data-position="front"] .card-inner {
  background: rgba(15, 23, 42, 0.95) !important;
  border-color: rgba(100, 200, 255, 0.4);
  box-shadow:
    0 16px 64px rgba(100, 180, 255, 0.3),
    0 0 100px rgba(100, 180, 255, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
  opacity: 1 !important;
  -webkit-backdrop-filter: blur(20px) !important;
  backdrop-filter: blur(20px) !important;
}

/* Side cards - visible as transparent ghost cards */
.carousel-card[data-position="front-right"] {
  transform: translateX(280px) translateZ(150px) rotateY(-25deg) scale(0.85);
  opacity: 0.6;
  z-index: 5;
  filter: brightness(0.8);
  pointer-events: none;
}

.carousel-card[data-position="front-left"] {
  transform: translateX(-280px) translateZ(150px) rotateY(25deg) scale(0.85);
  opacity: 0.6;
  z-index: 5;
  filter: brightness(0.8);
  pointer-events: none;
}

/* Back cards - slightly visible for depth */
.carousel-card[data-position="back-right"],
.carousel-card[data-position="back-left"],
.carousel-card[data-position="right"],
.carousel-card[data-position="left"] {
  opacity: 0.35;
  z-index: 3;
  filter: brightness(0.6);
  pointer-events: none;
}

/* Only the one directly behind the front is completely hidden */
.carousel-card[data-position="back"] {
  transform: translateZ(-500px) scale(0.1) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: -1 !important;
  filter: brightness(0) blur(20px);
  pointer-events: none;
  clip-path: inset(100%);
}

.carousel-card[data-position="back"] .card-inner {
  opacity: 0 !important;
  visibility: hidden !important;
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
}

.carousel-card[data-position="back"] .card-inner * {
  opacity: 0 !important;
  visibility: hidden !important;
  font-size: 0 !important;
  line-height: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Responsive 3D Carousel */
@media (max-width: 992px) {
  .carousel-container {
    width: 280px;
    height: 340px;
  }

  .carousel-card {
    width: 280px;
    height: 340px;
  }

  .carousel-card[data-position="front"] {
    transform: translateZ(300px) scale(1);
  }

  .carousel-card[data-position="front-right"] {
    transform: translateX(220px) translateZ(100px) rotateY(-20deg) scale(0.8);
    opacity: 0.5;
    filter: brightness(0.75);
    pointer-events: none;
  }

  .carousel-card[data-position="front-left"] {
    transform: translateX(-220px) translateZ(100px) rotateY(20deg) scale(0.8);
    opacity: 0.5;
    filter: brightness(0.75);
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  .carousel-scene {
    height: 380px;
  }

  .carousel-container {
    width: 260px;
    height: 320px;
  }

  .carousel-card {
    width: 260px;
    height: 320px;
  }

  .carousel-card .card-inner {
    padding: 2rem 1.5rem;
  }

  .carousel-card h3 {
    font-size: 1.3rem;
  }

  .card-stat {
    font-size: 1.2rem;
  }

  .card-desc {
    font-size: 0.9rem;
  }

  .card-icon {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }

  /* Simplified layout for mobile - show 3 cards with visible sides */
  .carousel-card[data-position="front"] {
    transform: translateZ(200px) scale(1);
    filter: brightness(1);
  }

  .carousel-card[data-position="front-right"] {
    transform: translateX(140px) translateZ(50px) rotateY(-15deg) scale(0.75);
    opacity: 0.45;
    filter: brightness(0.7);
  }

  .carousel-card[data-position="front-left"] {
    transform: translateX(-140px) translateZ(50px) rotateY(15deg) scale(0.75);
    opacity: 0.45;
    filter: brightness(0.7);
  }

  .carousel-card[data-position="back-right"],
  .carousel-card[data-position="back-left"],
  .carousel-card[data-position="back"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    filter: brightness(0);
  }

  .carousel-controls {
    gap: 1rem;
  }

  .carousel-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ==========================================
   HOW WE TRANSFORM - JOURNEY TIMELINE
   ========================================== */

.transform-journey {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding: 2rem 0;
}

/* Background line */
.journey-line {
  position: absolute;
  top: 45px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  z-index: 1;
}

/* Progress line (animated) */
.journey-progress {
  position: absolute;
  top: 45px;
  left: 5%;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #00d4ff 0%, #8b5cf6 50%, #ec4899 100%);
  border-radius: 2px;
  z-index: 2;
  transition: width 1s ease;
}

.transform-journey.in-view .journey-progress {
  width: 90%;
}

/* Individual steps */
.journey-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 3;
  opacity: 0.5;
  transition: all 0.5s ease;
}

.journey-step.active,
.journey-step:hover {
  opacity: 1;
}

.journey-step.featured {
  opacity: 1;
}

/* Step marker */
.step-marker {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.95) 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.step-marker span {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.journey-step.active .step-marker,
.journey-step:hover .step-marker {
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.journey-step.active .step-marker span,
.journey-step:hover .step-marker span {
  color: #00d4ff;
}

.journey-step.featured .step-marker {
  border-color: #8b5cf6;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
  transform: scale(1.1);
}

.journey-step.featured .step-marker span {
  color: #8b5cf6;
}

/* Marker pulse animation */
.marker-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid transparent;
  opacity: 0;
  transition: all 0.3s ease;
}

.journey-step.active .marker-pulse {
  animation: markerPulse 2s ease-in-out infinite;
  border-color: #00d4ff;
}

.journey-step.featured .marker-pulse {
  animation: markerPulse 2s ease-in-out infinite;
  border-color: #8b5cf6;
}

@keyframes markerPulse {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

/* Step content */
.step-content {
  max-width: 180px;
  transition: transform 0.3s ease;
}

.journey-step:hover .step-content {
  transform: translateY(-5px);
}

.step-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  font-size: 1.25rem;
  color: #00d4ff;
  transition: all 0.3s ease;
}

.journey-step.featured .step-icon {
  background: rgba(139, 92, 246, 0.15);
  color: #8b5cf6;
}

.journey-step:hover .step-icon {
  transform: scale(1.1);
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

/* Featured step badge */
.step-badge {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 0.75rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
  white-space: nowrap;
}

/* Responsive Journey */
@media (max-width: 992px) {
  .transform-journey {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .journey-step {
    flex: 0 0 calc(33.333% - 1rem);
  }

  .journey-line,
  .journey-progress {
    display: none;
  }
}

@media (max-width: 768px) {
  .transform-journey {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding-left: 60px;
  }

  .journey-step {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
  }

  .step-marker {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-content {
    max-width: none;
  }

  .step-badge {
    position: static;
    transform: none;
    margin-bottom: 0.5rem;
    display: inline-block;
  }

  .journey-step.featured {
    padding-top: 0;
  }

  .journey-step.featured .step-content {
    display: flex;
    flex-direction: column;
  }

  /* Vertical line for mobile */
  .journey-line {
    display: block;
    top: 25px;
    left: 25px;
    right: auto;
    width: 3px;
    height: calc(100% - 50px);
  }

  .journey-progress {
    display: block;
    top: 25px;
    left: 25px;
    right: auto;
    width: 3px;
    height: 0%;
  }

  .transform-journey.in-view .journey-progress {
    width: 3px;
    height: calc(100% - 50px);
  }
}

/* ==========================================
   WHAT WE DELIVER - HORIZONTAL MORPH
   ========================================== */

.solutions-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #0f0f1e 100%);
}

.deliver-morph-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.deliver-morph-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(100, 180, 255, 0.1);
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 10px 40px rgba(100, 180, 255, 0.08);
}

/* Tab Navigation */
.deliver-tabs {
  display: flex;
  border-bottom: 1px solid rgba(100, 180, 255, 0.1);
}

.deliver-tab {
  flex: 1;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.3s ease;
  position: relative;
}

.deliver-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #8b5cf6);
  transition: width 0.3s ease;
}

.deliver-tab:hover {
  background: rgba(100, 180, 255, 0.05);
}

.deliver-tab.active::after {
  width: 60%;
}

.deliver-tab.active {
  background: rgba(100, 180, 255, 0.08);
}

.tab-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(100, 180, 255, 0.5);
  transition: color 0.3s ease;
}

.deliver-tab.active .tab-number {
  color: #00d4ff;
}

.tab-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.deliver-tab.active .tab-label {
  color: #ffffff;
}

/* Morph Content Area */
.deliver-morph-content {
  position: relative;
  min-height: 320px;
  overflow: visible;
}

.deliver-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.deliver-panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.deliver-panel.exit-left {
  opacity: 0;
  transform: translateX(-30px);
}

.deliver-panel-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  height: 100%;
}

/* Icon Side */
.deliver-icon-side {
  flex-shrink: 0;
}

.deliver-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 2.5rem;
  transition: all 0.4s ease;
}

.deliver-icon.training {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
  color: #00d4ff;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.15);
}

.deliver-icon.development {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.deliver-icon.partnership {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
}

/* Content Side */
.deliver-content-side {
  flex: 1;
}

.deliver-content-side h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.deliver-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.deliver-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.deliver-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.deliver-feature i {
  color: #10b981;
  font-size: 0.8rem;
}

.deliver-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #00d4ff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.deliver-link:hover {
  gap: 0.75rem;
  color: #8b5cf6;
}

.deliver-link i {
  transition: transform 0.3s ease;
}

.deliver-link:hover i {
  transform: translateX(3px);
}

/* Progress Bar */
.deliver-progress {
  padding: 0 2.5rem 1.5rem;
}

.deliver-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.deliver-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00d4ff, #8b5cf6);
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 768px) {
  .deliver-panel {
    padding: 2rem 1.5rem;
  }

  .deliver-panel-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .deliver-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .deliver-content-side h3 {
    font-size: 1.4rem;
  }

  .deliver-features {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .deliver-morph-content {
    min-height: 420px;
  }

  .tab-label {
    font-size: 0.85rem;
  }

  .deliver-link {
    justify-content: center;
  }
}

/* ==========================================
   FAQ SECTION - MODERN DESIGN
   ========================================== */

.faq-section-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, #050510 0%, #0a0a1a 50%, #050510 100%);
  position: relative;
  overflow: hidden;
}

.faq-section-modern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #00d4ff;
  margin-bottom: 1.5rem;
}

.faq-badge i {
  font-size: 1rem;
}

.faq-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* FAQ Item */
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(100, 180, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item:hover {
  border-color: rgba(100, 180, 255, 0.25);
  box-shadow: 0 10px 40px rgba(100, 180, 255, 0.08);
}

.faq-item.active {
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.03);
}

/* Question Button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(100, 180, 255, 0.03);
}

.faq-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 14px;
  color: #00d4ff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.faq-question span {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  transform: rotate(45deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

.faq-answer-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  padding-left: calc(50px + 2.5rem); /* Icon width + gap + padding */
}

.faq-answer-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content strong {
  color: white;
}

/* Path Cards */
.faq-path {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(100, 180, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.faq-path h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-path h4 i {
  font-size: 0.9rem;
}

.faq-path ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-path ul li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.faq-path ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: #00d4ff;
  border-radius: 50%;
}

/* Stats */
.faq-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-stat {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-align: center;
}

.faq-stat .stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Checklist */
.faq-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.faq-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  padding: 0.4rem 0;
}

.faq-checklist li i {
  color: #10b981;
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

/* Highlight Box */
.faq-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.faq-highlight > i {
  font-size: 1.5rem;
  color: #8b5cf6;
  flex-shrink: 0;
}

.faq-highlight p {
  margin: 0 !important;
  font-style: italic;
}

/* Note */
.faq-note {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.faq-note i {
  color: #f59e0b;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* CTA */
.faq-cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(100, 180, 255, 0.1);
}

.faq-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .faq-section-modern {
    padding: 60px 0;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .faq-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

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

  .faq-answer-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .faq-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .faq-stat {
    padding: 0.75rem 1rem;
  }

  .faq-stat .stat-value {
    font-size: 1.5rem;
  }
}

/* ==========================================
   PRICING SECTION - DARK MODERN
   ========================================== */

.pricing-section-dark {
  padding: 60px 0;
  background: linear-gradient(180deg, #030308 0%, #0a0a14 50%, #050510 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section-dark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, rgba(0, 212, 255, 0.02) 40%, transparent 70%);
  pointer-events: none;
}

.pricing-header-dark {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-title-dark {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pricing-subtitle-dark {
  font-size: 1.05rem;
  color: rgba(200, 215, 235, 0.65);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pricing Layout */
.pricing-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

/* Main Pricing Card */
.pricing-card-dark {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 20, 35, 0.9) 0%, rgba(10, 12, 25, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  overflow: visible;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.pricing-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card-content {
  position: relative;
  padding: 2rem;
  z-index: 2;
}

.pricing-icon-dark {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  font-size: 1.5rem;
  color: #8b5cf6;
  margin-bottom: 1.5rem;
}

.pricing-card-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.pricing-value {
  font-size: 1.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.pricing-note-dark {
  font-size: 0.85rem;
  color: rgba(200, 215, 235, 0.6);
  margin-bottom: 1.5rem;
}

/* Features */
.pricing-features-dark {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.feature-item-dark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-item-dark i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 50%;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.feature-item-dark span {
  font-size: 0.85rem;
  color: rgba(200, 215, 235, 0.85);
}

/* CTA Button */
.pricing-cta-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-cta-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  color: white;
}

.pricing-cta-dark i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.pricing-cta-dark:hover i {
  transform: translateX(4px);
}

/* Side Info Cards */
.pricing-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card-dark {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(100, 180, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.info-card-dark:hover {
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.03);
}

.info-card-dark .info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 10px;
  color: #00d4ff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.info-card-dark h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.4rem;
}

.info-card-dark p {
  font-size: 0.85rem;
  color: rgba(200, 215, 235, 0.6);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Pricing */
@media (max-width: 992px) {
  .pricing-layout {
    grid-template-columns: 1fr;
    max-width: 550px;
  }

  .pricing-info-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-card-dark {
    flex: 1;
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .pricing-section-dark {
    padding: 70px 0;
  }

  .pricing-title-dark {
    font-size: 2rem;
  }

  .pricing-card-content {
    padding: 2rem;
  }

  .pricing-value {
    font-size: 1.85rem;
  }

  .pricing-info-cards {
    flex-direction: column;
  }
}

/* ==========================================
   CONTACT SECTION - COMPACT
   ========================================== */

.contact-compact-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #050510 0%, #0a0a1a 100%);
  position: relative;
}

.contact-compact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

/* Info Side */
.contact-info-side {
  padding-right: 1rem;
}

.contact-title-compact {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.contact-desc-compact {
  font-size: 1rem;
  color: rgba(200, 215, 235, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-quick-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(200, 215, 235, 0.8);
}

.quick-info-item i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  color: #00d4ff;
  font-size: 0.85rem;
}

/* Form Side */
.contact-form-side {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(100, 180, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.contact-form-compact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  position: relative;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.contact-form-compact input,
.contact-form-compact textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid rgba(100, 180, 255, 0.15);
  border-radius: 10px;
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form-compact input::placeholder,
.contact-form-compact textarea::placeholder {
  color: rgba(180, 200, 220, 0.4);
}

.contact-form-compact input:focus,
.contact-form-compact textarea:focus {
  outline: none;
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

.contact-form-compact textarea {
  resize: none;
  min-height: 80px;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #00d4ff 0%, #0891b2 100%);
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a0a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.35);
}

.contact-submit-btn i {
  font-size: 0.85rem;
}

/* Responsive Contact */
@media (max-width: 992px) {
  .contact-compact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .contact-info-side {
    padding-right: 0;
  }

  .contact-quick-info {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-compact-section {
    padding: 60px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-side {
    padding: 1.5rem;
  }

  .contact-title-compact {
    font-size: 1.75rem;
  }
}

/* ==========================================
   FOOTER - MODERN DESIGN
   ========================================== */

.footer-modern {
  background: linear-gradient(180deg, #050510 0%, #020205 100%);
  padding: 3rem 0 1.5rem;
  position: relative;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(0, 212, 255, 0.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(100, 180, 255, 0.08);
}

.footer-grid-with-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(100, 180, 255, 0.08);
  align-items: start;
}

.footer-contact-form {
  padding: 0;
}

.footer-contact-form h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact-desc {
  font-size: 0.7rem;
  color: rgba(200, 215, 235, 0.6);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(200, 215, 235, 0.7);
}

.footer-info-item i {
  color: #00d4ff;
  font-size: 0.7rem;
  width: 14px;
  flex-shrink: 0;
}

.footer-form-compact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-form-compact input,
.footer-form-compact textarea {
  width: 100%;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 0.75rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.footer-form-compact input::placeholder,
.footer-form-compact textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-form-compact input:focus,
.footer-form-compact textarea:focus {
  outline: none;
  border-color: rgba(0, 212, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.footer-form-compact textarea {
  resize: vertical;
  min-height: 40px;
}

.footer-form-btn {
  padding: 0.5rem 0.8rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  color: #00d4ff;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.footer-form-btn:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(139, 92, 246, 0.3));
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

@media (max-width: 992px) {
  .footer-grid-with-form {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-contact-form {
    grid-column: 1 / -1;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .footer-grid-with-form {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-nav-col {
    text-align: center;
  }
}

/* Brand Column */
.footer-brand {
  padding-right: 0.75rem;
}

.footer-logo-modern {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(200, 215, 235, 0.6);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.footer-social-links {
  display: flex;
  gap: 0.6rem;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(100, 180, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-social-links a:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.4);
  color: #00d4ff;
  transform: translateY(-2px);
}

/* Navigation Columns */
.footer-nav-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-col li {
  margin-bottom: 0.4rem;
}

.footer-nav-col a {
  font-size: 0.85rem;
  color: rgba(200, 215, 235, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-nav-col a:hover {
  color: #00d4ff;
}

/* CTA Column */
.footer-cta-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-cta-col p {
  font-size: 0.9rem;
  color: rgba(200, 215, 235, 0.6);
  margin-bottom: 1.25rem;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-cta-btn:hover {
  background: linear-gradient(135deg, #00d4ff 0%, #0891b2 100%);
  border-color: transparent;
  color: #0a0a1a;
}

.footer-cta-btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.footer-cta-btn:hover i {
  transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0 0;
  margin-top: 1rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(200, 215, 235, 0.5);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.85rem;
  color: rgba(200, 215, 235, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #00d4ff;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-nav-col,
  .footer-cta-col {
    text-align: center;
  }

  .footer-cta-btn {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .footer-modern {
    padding: 2.5rem 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-modern {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    gap: 1rem;
  }
}

/* ==========================================
   COMPACT FOOTER - MINIMAL & ORGANIZED
   ========================================== */

.footer-compact {
  background: linear-gradient(180deg, #050510 0%, #020208 100%);
  padding: 2rem 0 1.5rem;
  position: relative;
}

.footer-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), rgba(139, 92, 246, 0.3), transparent);
}

/* Footer Top Row */
.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-mini {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}

.footer-tagline-mini {
  font-size: 0.85rem;
  color: rgba(200, 215, 235, 0.5);
}

.footer-social-mini {
  display: flex;
  gap: 0.5rem;
}

.footer-social-mini a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-social-mini a:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.4);
  color: #00d4ff;
  transform: translateY(-2px);
}

/* Footer Links Row */
.footer-links-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links-inline a {
  font-size: 0.85rem;
  color: rgba(200, 215, 235, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links-inline a:hover {
  color: #00d4ff;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  color: #00d4ff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-btn:hover {
  background: linear-gradient(135deg, #00d4ff 0%, #0891b2 100%);
  border-color: transparent;
  color: #0a0a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.25);
}

.footer-contact-btn i {
  font-size: 0.8rem;
}

/* Footer Bottom Row */
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
}

.footer-copyright-mini {
  font-size: 0.8rem;
  color: rgba(200, 215, 235, 0.4);
  margin: 0;
}

.footer-legal-mini {
  display: flex;
  gap: 1.25rem;
}

.footer-legal-mini a {
  font-size: 0.8rem;
  color: rgba(200, 215, 235, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-mini a:hover {
  color: #00d4ff;
}

.footer-credit-mini {
  font-size: 0.8rem;
  color: rgba(200, 215, 235, 0.3);
  margin: 0;
}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-links-row {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links-inline {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-compact {
    padding: 1.5rem 0 1rem;
  }

  .footer-top-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-brand-mini {
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer-divider {
    display: none;
  }

  .footer-links-inline {
    gap: 1rem;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-legal-mini {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-links-inline {
    gap: 0.75rem;
    font-size: 0.8rem;
  }

  .footer-links-inline a {
    font-size: 0.8rem;
  }
}

/* ==========================================
   WORKFLOW SECTION - LINEAR TIMELINE
   Clean organized step-by-step flow
   ========================================== */

.workflow-glass-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #050510 0%, #0a0a1a 50%, #050510 100%);
  overflow: hidden;
}

/* Animated Background Effects */
.workflow-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.workflow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.workflow-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.25) 0%, transparent 70%);
  top: -150px;
  left: -100px;
}

.workflow-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  top: 50%;
  right: -100px;
}

.workflow-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
  bottom: -80px;
  left: 30%;
}

.workflow-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

/* Header Styles */
.workflow-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 10;
}

.workflow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #00d4ff;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.workflow-badge i {
  font-size: 0.85rem;
}

.workflow-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.workflow-subtitle {
  font-size: 1.1rem;
  color: rgba(200, 215, 235, 0.65);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ==========================================
   HORIZONTAL WORKFLOW TIMELINE
   ========================================== */

/* Timeline Container - Horizontal */
.workflow-timeline {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Horizontal Connector Line */
.workflow-timeline::before {
  content: '';
  position: absolute;
  top: 72px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0.5) 50%, rgba(139, 92, 246, 0.5) 75%, rgba(139, 92, 246, 0.2) 100%);
  border-radius: 3px;
  z-index: 0;
}

/* Animated pulse on connector */
.workflow-timeline::after {
  content: '';
  position: absolute;
  top: 70px;
  left: 10%;
  width: 60px;
  height: 7px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  border-radius: 4px;
  animation: flowPulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes flowPulse {
  0% { left: 10%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(90% - 60px); opacity: 0; }
}

/* Individual Step - Horizontal */
.workflow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0;
  max-width: 220px;
  z-index: 2;
}

.workflow-step:last-child {
  margin-bottom: 0;
}

/* Step Number - Circle on the line */
.step-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a18 0%, #06060f 100%);
  border: 3px solid rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 800;
  color: #00d4ff;
  position: relative;
  z-index: 5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
  margin-bottom: 1.25rem;
}

.workflow-step:hover .step-number {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  border-color: rgba(0, 212, 255, 0.7);
  box-shadow: 0 0 35px rgba(0, 212, 255, 0.4);
  transform: scale(1.1);
}

/* Hide vertical connector (not needed for horizontal) */
.step-connector {
  display: none;
}

/* Step Card - Below the number */
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.025);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.12);
}

/* Step Icon */
.step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 14px;
  transition: all 0.4s ease;
}

.step-icon i {
  font-size: 1.25rem;
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
}

/* Step Content */
.step-content {
  text-align: center;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.4rem 0;
  transition: color 0.3s ease;
}

.step-card:hover .step-content h3 {
  color: #00d4ff;
}

.step-content p {
  font-size: 0.8rem;
  color: rgba(200, 215, 235, 0.65);
  line-height: 1.5;
  margin: 0;
}

/* Highlighted Step (Step 4) */
.workflow-step.highlighted {
  position: relative;
}

.workflow-step.highlighted .step-number {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
  border-color: rgba(139, 92, 246, 0.6);
  color: #a78bfa;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.25);
}

.workflow-step.highlighted:hover .step-number {
  border-color: rgba(139, 92, 246, 0.8);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.workflow-step.highlighted .step-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, rgba(236, 72, 153, 0.04) 100%);
  border-color: rgba(139, 92, 246, 0.2);
}

.workflow-step.highlighted .step-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.workflow-step.highlighted .step-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  border-color: rgba(139, 92, 246, 0.3);
}

.workflow-step.highlighted .step-icon i {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.workflow-step.highlighted .step-card:hover .step-content h3 {
  color: #a78bfa;
}

/* Step Badge - Above the step */
.step-badge {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.9rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  z-index: 10;
  text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 992px) {
  .workflow-timeline {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }

  .workflow-timeline::before,
  .workflow-timeline::after {
    display: none;
  }

  .workflow-step {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .workflow-glass-section {
    padding: 70px 0;
  }

  .workflow-title {
    font-size: 2rem;
  }

  .workflow-subtitle {
    font-size: 1rem;
  }

  .workflow-timeline {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .workflow-step {
    flex: none;
    width: 100%;
    max-width: 350px;
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }

  .step-number {
    width: 42px;
    height: 42px;
    font-size: 0.8rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-card {
    flex-direction: row;
    align-items: center;
    padding: 1rem 1.25rem;
    gap: 1rem;
    flex: 1;
  }

  .step-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .step-icon i {
    font-size: 1.1rem;
  }

  .step-content {
    text-align: left;
  }

  .step-content h3 {
    font-size: 0.95rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  .step-badge {
    left: 55px;
    font-size: 0.6rem;
    padding: 0.25rem 0.6rem;
  }
}

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

  .step-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .step-icon {
    width: 36px;
    height: 36px;
  }
}

/* ==========================================
   NEW SOLUTIONS SECTION - 4 CARD GRID
   ========================================== */

.solutions-section-new {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a0a1a 0%, #050510 50%, #0a0a1a 100%);
  position: relative;
}

.solutions-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* 4 Card Grid */
.solutions-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

/* 5 Card Grid */
.solutions-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

/* Solution Card */
.solution-card-new {
  position: relative;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.solution-card-new:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.15);
}

.solution-card-new.featured {
  border-color: rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.solution-card-new.featured:hover {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

.solution-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.solution-card-new:hover .solution-card-glow {
  opacity: 1;
}

.solution-number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.solution-badge-featured {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.solution-icon-new {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.solution-icon-new i {
  font-size: 1.5rem;
  color: #00d4ff;
}

.solution-card-new.featured .solution-icon-new {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
  border-color: rgba(139, 92, 246, 0.4);
}

.solution-card-new.featured .solution-icon-new i {
  color: #8b5cf6;
}

.solution-card-new h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.solution-desc {
  font-size: 0.9rem;
  color: rgba(200, 215, 235, 0.65);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.solution-features-new {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.solution-features-new li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(200, 215, 235, 0.8);
  margin-bottom: 0.5rem;
}

.solution-features-new li i {
  font-size: 0.7rem;
  color: #00d4ff;
}

.solution-link-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.solution-link-new:hover {
  color: white;
  gap: 0.75rem;
}

.solution-link-new i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.solution-link-new:hover i {
  transform: translateX(4px);
}

/* Solutions CTA */
.solutions-cta {
  position: relative;
  z-index: 2;
}

.solutions-cta-text {
  font-size: 1rem;
  color: rgba(200, 215, 235, 0.7);
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1400px) {
  .solutions-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
  .solutions-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solutions-section-new {
    padding: 60px 0;
  }

  .solutions-grid-4,
  .solutions-grid-5 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .solution-card-new {
    padding: 1.75rem 1.25rem;
  }

  .solution-icon-new {
    width: 50px;
    height: 50px;
  }

  .solution-icon-new i {
    font-size: 1.25rem;
  }

  .solution-card-new h3 {
    font-size: 1.1rem;
  }
}

/* ==========================================
   REVERSE CAROUSEL - AI PLATFORMS
   ========================================== */

/* Reverse carousel container */
.integrations-carousel.reverse {
  margin-top: 0.25rem;
}

/* Reverse track - moves right to left */
.integrations-track-reverse {
  display: flex;
  gap: 1rem;
  animation: scrollIntegrationsReverse 55s linear infinite;
  width: fit-content;
  overflow: visible;
  position: relative;
}

.integrations-track-reverse:hover {
  animation-play-state: paused;
}

/* Reverse animation keyframes */
@keyframes scrollIntegrationsReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Force all integration items to have same height */
.integration-item,
.integration-item.ai-platform {
  min-width: 110px;
  padding: 1rem 1.25rem;
  height: 85px;
}

/* Brand logo SVG styling - match Font Awesome icon size exactly */
.integration-item .brand-logo {
  width: 2rem;
  height: 2rem;
  max-width: 2rem;
  max-height: 2rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

/* Apply gradient fill to SVG brand logos using the defined gradient */
.integration-item.ai-platform .brand-logo {
  fill: url(#icon-gradient);
}

.integration-item.ai-platform .brand-logo path {
  fill: url(#icon-gradient);
  transition: fill 0.4s ease;
}

/* Hover effects for brand logos */
.integration-item:hover .brand-logo {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.integration-item.ai-platform:hover .brand-logo path {
  fill: url(#icon-gradient-hover);
}

/* Reduce spacing between carousels */
.integrations-section {
  padding-bottom: 3rem;
}

/* Mobile responsive for reverse carousel */
@media (max-width: 768px) {
  .integrations-track-reverse {
    animation-duration: 45s;
  }

  .integrations-carousel.reverse {
    margin-top: 0;
  }

  /* Match ai-platform sizing to first carousel on mobile */
  .integration-item,
  .integration-item.ai-platform {
    min-width: 160px;
    padding: 1.5rem;
    height: 95px;
  }

  /* Match brand-logo size to icons on mobile */
  .integration-item .brand-logo {
    width: 2.5rem;
    height: 2.5rem;
    max-width: 2.5rem;
    max-height: 2.5rem;
  }
}

/* ==========================================
   MOBILE PADDING FIX FOR NEW SECTIONS
   ========================================== */
@media (max-width: 768px) {
  /* Comparison section */
  .comparison-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Solution cards section */
  .solution-cards-section,
  .solution-section-new {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Use cases sections */
  .use-cases-section,
  .usecases-enhanced {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Industries section */
  .industries-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Process section */
  .process-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Benefits section */
  .benefits-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Departments section */
  .departments-section,
  .departments-section-interactive {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* CTA sections */
  .cta-section,
  .final-cta-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
