/* Professionals Lobby Brand Styles */
.pl-hero {
  position: relative;
  background: linear-gradient(135deg, #004080 0%, #0066CC 50%, #0080FF 100%);
  color: #fff;
  overflow: hidden;
}

.pl-hero .hero-image-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,64,128,0.8) 0%, rgba(0,128,255,0.4) 100%);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 1.5rem 0;
}

/* Quick Stats */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.quick-stats .stat-item {
  text-align: center;
  padding: 1rem;
}

.quick-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 0.5rem;
}

.quick-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Differentiators Grid */
.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.diff-card {
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-top: 4px solid #004080;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #004080, #0080FF);
}

.diff-icon {
  font-size: 2.5rem;
  color: #004080;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.diff-card h3 {
  color: #004080;
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
}

.diff-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.diff-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.diff-card li {
  margin-bottom: 0.5rem;
  color: #666;
  position: relative;
}

/* Services Visualization */
.services-visualization {
  position: relative;
  height: 600px;
  margin: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.center-circle {
  width: 150px;
  height: 150px;
  background: #004080;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.center-circle i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.center-circle span {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.services-wheel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.service-item {
  position: absolute;
  width: 180px;
  text-align: center;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-color: #004080;
  z-index: 20;
}

.service-item:nth-child(1) { top: 10%; left: 50%; transform: translateX(-50%); }
.service-item:nth-child(2) { top: 25%; right: 15%; }
.service-item:nth-child(3) { bottom: 25%; right: 15%; }
.service-item:nth-child(4) { bottom: 10%; left: 50%; transform: translateX(-50%); }
.service-item:nth-child(5) { bottom: 25%; left: 15%; }
.service-item:nth-child(6) { top: 25%; left: 15%; }
.service-item:nth-child(7) { top: 40%; left: 5%; }
.service-item:nth-child(8) { top: 40%; right: 5%; }

.service-item i {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 1rem;
  display: block;
}

.service-item h4 {
  color: #004080;
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.service-item p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.services-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.service-stat {
  text-align: center;
  padding: 1.5rem;
}

.service-stat .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 0.5rem;
}

.service-stat .stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #004080;
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:nth-child(odd) {
  flex-direction: row;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #004080;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 10;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin: 0 2rem;
  border-left: 4px solid #004080;
}

.process-step:nth-child(even) .step-content {
  border-left: none;
  border-right: 4px solid #004080;
}

.step-content h3 {
  color: #004080;
  margin: 0 0 1rem 0;
}

.step-content p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* AI + Human Comparison */
.ai-human-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.ai-side, .human-side {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
}

.ai-side {
  border-top: 4px solid #0080FF;
}

.human-side {
  border-top: 4px solid #004080;
}

.approach-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.approach-header i {
  font-size: 2.5rem;
}

.ai-side .approach-header i {
  color: #0080FF;
}

.human-side .approach-header i {
  color: #004080;
}

.approach-header h3 {
  margin: 0;
  color: #333;
}

.ai-side ul, .human-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-side li, .human-side li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.ai-side li:last-child, .human-side li:last-child {
  border-bottom: none;
}

.ai-side li i, .human-side li i {
  color: #004080;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hybrid-result {
  grid-column: 1 / -1;
  padding: 2rem;
  background: linear-gradient(135deg, #004080 0%, #0080FF 100%);
  color: white;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
}

.hybrid-result h3 {
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.hybrid-result p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.benefit-card {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 4px solid #004080;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 2.5rem;
  color: #004080;
  margin-bottom: 1.5rem;
  display: block;
}

.benefit-card h3 {
  color: #004080;
  margin: 0 0 1rem 0;
}

.benefit-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.client-testimonial {
  margin: 3rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #004080;
}

.client-testimonial blockquote {
  margin: 0;
  font-style: italic;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}

.client-testimonial footer {
  margin-top: 1rem;
  font-weight: 600;
  color: #004080;
  font-style: normal;
}

/* FAQ Section */
.faq-container {
  margin: 2rem 0;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question h3 {
  margin: 0;
  color: #004080;
  font-size: 1.1rem;
}

.faq-question i {
  color: #004080;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  margin: 3rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, #004080 0%, #0066CC 100%);
  color: white;
  border-radius: 12px;
  text-align: center;
}

.cta-content h2 {
  margin: 0 0 1rem 0;
  color: white;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-feature i {
  color: #4FC3F7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Sidebar Styles */
.youtube-shorts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.short-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.short-item:hover {
  background: #e9ecef;
}

.short-thumbnail {
  position: relative;
  flex-shrink: 0;
}

.short-thumbnail img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.short-thumbnail i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ff0000;
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.short-content h4 {
  margin: 0 0 0.5rem 0;
  color: #004080;
  font-size: 0.9rem;
}

.short-content p {
  margin: 0;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
}

.youtube-cta {
  text-align: center;
}

.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: #ff0000;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-youtube:hover {
  background: #cc0000;
}

.vertical-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.vertical-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: background 0.3s ease;
}

.vertical-link:hover {
  background: #e9ecef;
  color: #004080;
}

.vertical-link i {
  color: #004080;
  width: 20px;
  text-align: center;
}

.recognition-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #004080;
}

.badge i {
  color: #004080;
  font-size: 1.2rem;
}

.badge span {
  font-weight: 500;
  color: #333;
}

/* Network Animation */
.network-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-visualization {
    height: 400px;
  }
  
  .services-wheel {
    width: 300px;
    height: 300px;
  }
  
  .service-item {
    width: 120px;
    padding: 1rem 0.5rem;
  }
  
  .service-item h4 {
    font-size: 0.8rem;
  }
  
  .service-item p {
    font-size: 0.7rem;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    flex-direction: row !important;
    margin-left: 60px;
  }
  
  .step-content {
    margin-left: 2rem;
    margin-right: 0;
  }
  
  .ai-human-comparison {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}