/* ==========================================
   ADDITIONAL STYLES FOR 3-VIEW SECTION & PROCESS
   ========================================== */

/* Solution View Switcher */
.solution-view-switcher {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.view-btn {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.875rem 1.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.view-btn i {
  font-size: 1rem;
}

.view-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

.view-btn.active {
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

/* Solution Views */
.solution-view {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.solution-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Detailed Grid */
.detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.detailed-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.detailed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff 0%, #8b5cf6 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.detailed-card:hover::before {
  opacity: 1;
}

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

.detailed-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.detailed-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

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

.detailed-specs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.spec-item i {
  color: #00d4ff;
  font-size: 0.875rem;
}

/* Use Case Cards */
.usecase-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.usecase-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.usecase-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.usecase-card:hover::before {
  opacity: 1;
}

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

.usecase-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.usecase-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.usecase-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.usecase-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.usecase-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

.usecase-card:hover .usecase-tag {
  background: rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.5);
  color: white;
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.process-timeline-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.process-steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  overflow: visible;
}

.process-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00d4ff 0%, #8b5cf6 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.process-step-card:hover::before {
  opacity: 1;
}

.process-step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.step-number-circle {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
  z-index: 2;
}

.step-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  opacity: 0.3;
  animation: stepPulse 2s infinite;
}

@keyframes stepPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.step-content {
  margin-left: 0;
  margin-top: 1rem;
}

.step-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #0a0a0a;
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.step-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

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

.step-feature i {
  color: #00d4ff;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .step-number-circle {
    top: 1rem;
    right: 1rem;
  }
  
  .step-content {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .detailed-grid,
  .usecase-cards {
    grid-template-columns: 1fr;
  }
}



/* Agent Cards Grid */
.agent-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.agent-card {
  position: relative;
  background: white;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  padding: 1.25rem;
  transition: all 0.4s ease;
  overflow: visible;
  min-height: 180px;
}

.agent-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
  background: #fafbfc;
}

.agent-icon-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  border-radius: 14px;
}

.agent-icon-wrapper i {
  font-size: 1.5rem;
  color: white;
  z-index: 2;
}

.agent-glow {
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  opacity: 0.3;
  animation: agentPulse 2s infinite;
  z-index: 1;
}

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

.agent-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #00d4ff;
}

.agent-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  text-align: center;
}

.agent-description {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: center;
}

.agent-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.skill-tag {
  background: rgba(0, 212, 255, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 12px;
  font-size: 0.75rem;
  color: #00d4ff;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Agentic AI Explanation Card */
.agentic-explanation-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.agentic-explanation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00d4ff 0%, #8b5cf6 100%);
}

.explanation-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.explanation-header i {
  font-size: 2rem;
  color: #00d4ff;
}

.explanation-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.explanation-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.explanation-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-point {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.benefit-point:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateX(8px);
}

.benefit-point i {
  font-size: 1.25rem;
  color: #00d4ff;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.benefit-point strong {
  display: block;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.benefit-point p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.explanation-cta {
  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: 16px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.explanation-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.explanation-cta strong {
  color: #00d4ff;
}

@media (max-width: 768px) {
  .agentic-explanation-card {
    padding: 2rem 1.5rem;
  }
  
  .explanation-header h3 {
    font-size: 1.5rem;
  }
  
  .explanation-benefits {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   WHAT WE BUILD SECTION - REDESIGNED
   ========================================== */

.what-we-build-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.what-we-build-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.solutions-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.solution-showcase-card {
  position: relative;
  min-height: 350px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
}

.solution-card-1 .solution-card-bg {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(236, 72, 153, 0.15) 50%, transparent 100%);
}

.solution-card-2 .solution-card-bg {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.15) 50%, transparent 100%);
}

.solution-card-3 .solution-card-bg {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(0, 212, 255, 0.15) 50%, transparent 100%);
}

.solution-showcase-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.solution-showcase-card:hover .solution-card-bg {
  opacity: 1;
}

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

.solution-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  z-index: 2;
}

.solution-card-1 .solution-icon-wrapper {
  background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
}

.solution-card-2 .solution-icon-wrapper {
  background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
}

.solution-card-3 .solution-icon-wrapper {
  background: linear-gradient(135deg, #06b6d4 0%, #00d4ff 100%);
}

.solution-icon-wrapper i {
  font-size: 2rem;
  color: white;
  z-index: 2;
}

.solution-glow {
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  background: inherit;
  filter: blur(20px);
  opacity: 0.6;
  animation: solutionPulse 2s infinite;
}

@keyframes solutionPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.solution-number {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1;
  color: white;
}

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

.solution-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.solution-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.solution-showcase-card:hover .solution-feature {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

.solution-feature i {
  color: #00d4ff;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.solution-feature span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.solution-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .what-we-build-section {
    padding: 40px 0;
  }
  
  .solution-showcase-card {
    min-height: 400px;
  }
  
  .solution-card-content {
    padding: 2rem 1.5rem;
  }
  
  .solution-title {
    font-size: 1.75rem;
  }
  
  .solution-description {
    font-size: 1rem;
  }
  
  .solution-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .solution-icon-wrapper i {
    font-size: 1.75rem;
  }
  
  .solution-number {
    font-size: 3.5rem;
    top: 1rem;
    right: 1rem;
  }
}

@media (min-width: 1200px) {
  .solutions-showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-showcase-card {
    max-width: 900px;
    margin: 0 auto;
  }
}
