/* ====================
   PROFESSIONALS LOBBY USP - ARTICLE STYLES
   Fully Responsive
   ==================== */

/* Hero Section Customization */
.usp-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  position: relative;
  overflow: hidden;
}

.usp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path fill="white" d="M50,10 L60,40 L90,40 L65,60 L75,90 L50,70 L25,90 L35,60 L10,40 L40,40 Z"/></svg>') repeat;
  background-size: 50px;
  pointer-events: none;
}

.usp-hero .hero-text h1 {
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #a5f3fc;
  display: block;
  margin-top: 0.5rem;
}

.usp-hero .article-meta,
.usp-hero .breadcrumb,
.usp-hero .breadcrumb a {
  color: #94a3b8;
}

.usp-hero .article-category {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

/* Quick Navigation */
.quick-nav {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
  border: 1px solid #e2e8f0;
}

.quick-nav h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #0f172a;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.nav-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.nav-card i {
  color: #3b82f6;
  font-size: 1rem;
  width: 1.25rem;
}

.nav-card:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
  border-color: #3b82f6;
}

.nav-card:hover i {
  color: white;
}

.nav-card.active {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.nav-card.active i {
  color: white;
}

/* USP Highlight Box */
.usp-highlight-box {
  background: linear-gradient(135deg, #f1f5f9 0%, #e6f0fa 100%);
  padding: 2rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
  border-left: 4px solid #3b82f6;
}

.principle-statement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
  flex-wrap: wrap;
}

.principle-statement i {
  font-size: 2rem;
  color: #3b82f6;
}

.neutrality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: center;
}

.neutrality-badges span {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #0f172a;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.neutrality-badges i {
  color: #10b981;
}

.tagline {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #cbd5e1;
}

/* Risk Card */
.risk-card {
  background: #fef9e7;
  padding: 2rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
  border-left: 4px solid #f59e0b;
}

.risk-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 1.5rem 0;
  justify-content: center;
}

.stat {
  text-align: center;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  min-width: 200px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ef4444;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: #475569;
}

/* LOBO AI Card */
.lobo-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 2rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
  color: white;
}

.lobo-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.lobo-mascot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #3b82f6;
  object-fit: cover;
}

.lobo-intro p {
  color: #cbd5e1;
  margin: 0;
}

.hybrid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.hybrid {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
}

.hybrid i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.hybrid.ai-side i {
  color: #60a5fa;
}

.hybrid.human-side i {
  color: #a78bfa;
}

.hybrid h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hybrid ul {
  list-style: none;
  padding: 0;
}

.hybrid li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}

.hybrid li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
}

.learn-more {
  display: inline-block;
  margin-top: 1rem;
  color: #60a5fa;
  text-decoration: none;
  font-size: 0.85rem;
}

.learn-more:hover {
  color: white;
}

.hybrid-conclusion {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Free Advisory Card */
.free-advisory-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 2rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
  border-left: 4px solid #10b981;
}

.free-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.free-service {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.free-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.free-service i {
  font-size: 2rem;
  color: #10b981;
  margin-bottom: 1rem;
  display: block;
}

.free-service h4 {
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.free-service p {
  font-size: 0.85rem;
  margin: 0;
  color: #475569;
}

.free-conclusion {
  text-align: center;
  font-weight: 500;
  margin: 1rem 0;
}

.cta-free {
  text-align: center;
  margin-top: 1.5rem;
}

/* ERPEDIA Card */
.erpedia-card {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  padding: 2rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
  border-left: 4px solid #8b5cf6;
}

.erpedia-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.erpedia-features .feature {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.erpedia-features .feature i {
  font-size: 2rem;
  color: #8b5cf6;
  margin-bottom: 1rem;
  display: block;
}

.erpedia-features .feature h4 {
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.erpedia-features .feature p {
  font-size: 0.9rem;
  margin: 0;
  color: #475569;
}

.erpedia-conclusion {
  text-align: center;
  font-weight: 500;
  margin: 1rem 0;
}

.erpedia-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Local Expertise Card */
.local-expertise-card {
  background: #e0f2fe;
  padding: 2rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
  border-left: 4px solid #0284c7;
}

.expertise-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: center;
}

.expertise-areas span {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.expertise-areas i {
  color: #0284c7;
}

/* Verticals Grid */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.vertical-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.vertical-card i {
  font-size: 2rem;
  color: #3b82f6;
}

.vertical-card span {
  color: #0f172a;
  font-weight: 500;
  font-size: 0.9rem;
}

.vertical-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
  background: #f8fafc;
}

.verticals-conclusion {
  text-align: center;
  margin-top: 1rem;
  font-weight: 500;
}

/* Matching Card */
.matching-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.typical, .professionals {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.typical h3, .professionals h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.typical h3 {
  color: #ef4444;
}

.professionals h3 {
  color: #10b981;
}

.typical ul, .professionals ul {
  list-style: none;
  padding: 0;
}

.typical li, .professionals li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.typical i {
  color: #ef4444;
}

.professionals i {
  color: #10b981;
}

.vetted-network {
  background: #e0f2fe;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-top: 1.5rem;
}

.vetted-network h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.vetted-network i {
  color: #0284c7;
}

/* Strategic Positioning */
.strategic-positioning .positioning-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.not-box, .is-box {
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.not-box {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
}

.is-box {
  background: #f0fdf4;
  border-left: 4px solid #10b981;
}

.not-box h3, .is-box h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.not-box ul {
  list-style: none;
  padding: 0;
}

.not-box li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #991b1b;
}

.not-box i {
  color: #ef4444;
}

.is-box p {
  margin: 0;
  line-height: 1.6;
}

/* Final USP Box */
.final-usp {
  margin: 2rem 0;
}

.usp-final-box {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  color: white;
}

.usp-final-box .fa-quote-left {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 2rem;
  opacity: 0.3;
}

.usp-final-box .fa-quote-right {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  opacity: 0.3;
}

.usp-statement {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
  padding: 1rem 0;
}

/* Matters Card */
.matters-card {
  background: #fff8e7;
  padding: 2rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
  border-left: 4px solid #f59e0b;
}

.problems {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: center;
}

.problems span {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.problems i {
  color: #f59e0b;
}

.mission-statement {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  margin: 1rem 0;
}

.mission-conclusion {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #fde68a;
}

/* CTA Section Bottom */
.cta-section-bottom {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 2rem;
  border-radius: 1rem;
  margin: 2rem 0;
  text-align: center;
  color: white;
}

.cta-section-bottom h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-buttons-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons-group .btn-primary,
.cta-buttons-group .btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-buttons-group .btn-primary {
  background: #3b82f6;
  color: white;
}

.cta-buttons-group .btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.cta-buttons-group .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.cta-buttons-group .btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================
   RESPONSIVE DESIGN
   ==================== */

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hybrid-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison {
    grid-template-columns: 1fr;
  }
  
  .strategic-positioning .positioning-card {
    grid-template-columns: 1fr;
  }
  
  .usp-statement {
    font-size: 1.1rem;
  }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
  .quick-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-card span {
    font-size: 0.75rem;
  }
  
  .principle-statement {
    font-size: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .risk-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat {
    width: 100%;
    max-width: 250px;
  }
  
  .free-services {
    grid-template-columns: 1fr;
  }
  
  .erpedia-features {
    grid-template-columns: 1fr;
  }
  
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons-group {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons-group .btn-primary,
  .cta-buttons-group .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .usp-final-box .fa-quote-left,
  .usp-final-box .fa-quote-right {
    display: none;
  }
}

/* Mobile Portrait (up to 576px) */
@media (max-width: 576px) {
  .quick-nav-grid {
    grid-template-columns: 1fr;
  }
  
  .usp-highlight-box {
    padding: 1.5rem;
  }
  
  .neutrality-badges {
    flex-direction: column;
    align-items: stretch;
  }
  
  .neutrality-badges span {
    justify-content: center;
  }
  
  .risk-card,
  .lobo-card,
  .free-advisory-card,
  .erpedia-card,
  .local-expertise-card,
  .matching-card,
  .matters-card {
    padding: 1.5rem;
  }
  
  .verticals-grid {
    grid-template-columns: 1fr;
  }
  
  .hybrid {
    padding: 1rem;
  }
  
  .hybrid li {
    font-size: 0.8rem;
  }
  
  .usp-statement {
    font-size: 1rem;
  }
  
  .erpedia-links {
    flex-direction: column;
    align-items: stretch;
  }
  
  .erpedia-links .btn-secondary {
    text-align: center;
  }
  
  .tagline {
    font-size: 0.95rem;
  }
}

/* Extra Small Devices */
@media (max-width: 380px) {
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .quick-nav h3 {
    font-size: 1rem;
  }
  
  .principle-statement {
    font-size: 0.9rem;
  }
  
  .free-service h4 {
    font-size: 1rem;
  }
  
  .free-service p {
    font-size: 0.8rem;
  }
  
  .vertical-card span {
    font-size: 0.8rem;
  }
  
  .vertical-card i {
    font-size: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .sidebar,
  .quick-nav,
  .whatsapp-float,
  #backToTop,
  .cta-section-bottom,
  .newsletter-widget,
  .cta-free,
  .erpedia-links {
    display: none !important;
  }
  
  .main-content {
    width: 100%;
  }
  
  .content-wrapper {
    display: block;
  }
  
  .article-hero {
    background: white;
    color: black;
    padding: 1rem 0;
  }
  
  .usp-hero .hero-text h1 {
    color: black;
  }
  
  .hero-subtitle {
    color: #555;
  }
  
  a {
    text-decoration: none;
    color: black;
  }
  
  .usp-final-box {
    background: #f1f5f9;
    color: black;
    border: 1px solid #ccc;
  }
}