/* ============================================
   Network AI Home Page - Layout Only
   Typography handled by base.css classes
   ============================================ */

/* Home View Padding */
.network-home-view {
  padding: var(--space-6) var(--space-8);
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .network-home-view {
    padding: var(--space-4);
  }
}

/* ============================================
   Skeleton Loading
   ============================================ */
.skeleton-card {
  pointer-events: none;
  cursor: default;
}

.skeleton-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  margin: 0 auto var(--space-3);
}

.skeleton-line {
  height: 12px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ============================================
   AI Discovery Header (ChatGPT Style)
   ============================================ */
.home-ai-discovery-header {
  padding: var(--space-6) 0;
  margin-bottom: var(--space-6);
}

.home-ai-discovery-header .chatgpt-hero {
  text-align: center;
  margin-bottom: var(--space-4);
}

.home-ai-discovery-header .chatgpt-title {
  font-size: 28px;
  font-weight: 400;
  color: #2d3748;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.home-ai-discovery-header .chatgpt-search-box {
  max-width: 680px;
  margin: 0 auto var(--space-3);
  position: relative;
}

.home-ai-discovery-header .chatgpt-input {
  width: 100%;
  padding: 14px 52px 14px 48px;
  font-size: 15px;
  border: 1px solid #d1d5db;
  border-radius: 26px;
  background: #f9fafb;
  transition: all 0.15s ease;
}

.home-ai-discovery-header .chatgpt-input:hover {
  background: #ffffff;
  border-color: #b4b4b4;
}

.home-ai-discovery-header .chatgpt-input:focus {
  outline: none;
  background: #ffffff;
  border-color: #10a37f;
  box-shadow: 0 0 0 1px #10a37f;
}

.home-ai-discovery-header .chatgpt-search-box::before {
  content: '+';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #6b7280;
  pointer-events: none;
}

.home-ai-discovery-header .chatgpt-send-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #f4f4f4;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.home-ai-discovery-header .chatgpt-send-btn:hover:not(:disabled) {
  background: #ececec;
}

.home-ai-discovery-header .chatgpt-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.home-ai-discovery-header .chatgpt-send-btn svg {
  width: 16px;
  height: 16px;
  color: #6b7280;
}

.chatgpt-suggested-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  max-width: 800px;
  margin: var(--space-3) auto 0;
}

.chatgpt-prompt-chip {
  padding: var(--space-3) var(--space-5);
  background: white;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-full);
  font-size: 1.2rem !important; /* 16px - increased from 14px */
  color: var(--color-gray-700);
  cursor: pointer;
  transition: all 0.2s ease;
}

.chatgpt-prompt-chip:hover {
  background: var(--color-gray-50);
  border-color: var(--color-gray-400);
  transform: translateY(-1px);
}

/* ============================================
   Section Layout
   ============================================ */
.home-section {
  margin-bottom: var(--space-8);
}

.home-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

/* Force proper font sizes for section headers */
.home-section-header h2 {
  font-size: 2.25rem !important; /* 36px - text-4xl - INCREASED */
  font-weight: 700 !important;
  color: var(--color-gray-900);
  margin: 0;
}

.home-section-header a {
  font-size: 1.125rem !important; /* 18px - text-lg - INCREASED */
  font-weight: 600 !important;
}

/* ============================================
   Expert Cards
   ============================================ */


.home-expert-card {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-expert-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.home-expert-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-3);
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-expert-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-expert-initials {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: var(--color-gray-600);
}

.home-expert-info {
  width: 100%;
  margin-bottom: var(--space-3);
}

.home-expert-info h3 {
  font-size: 1.5rem !important; /* 24px - text-2xl - INCREASED */
  font-weight: 700 !important;
  margin: 0 0 var(--space-2);
}

.home-expert-info p {
  font-size: 1.125rem !important; /* 18px - text-lg - INCREASED */
  margin: 0;
}

.home-expert-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: var(--space-2) 0;
}

.home-expert-rating {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 1rem !important; /* 16px - INCREASED */
  color: var(--color-warning-600);
  font-weight: var(--font-medium);
}

.home-expert-rating svg {
  width: 18px;
  height: 18px;
}

.home-expert-price {
  font-size: 1rem !important; /* 16px - INCREASED */
  color: var(--color-gray-700);
  font-weight: var(--font-medium);
}

.home-expert-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  font-size: 0.875rem !important; /* 14px - INCREASED */
  color: var(--color-gray-600);
  margin-bottom: var(--space-2);
}

.home-expert-availability svg {
  width: 16px;
  height: 16px;
}

.home-expert-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  background: #dbeafe;
  color: #1e40af;
  border-radius: var(--radius-md);
  font-size: 0.875rem !important; /* 14px - INCREASED */
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.home-expert-badge svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   Premium Expert Cards - Matching Profile Header
   ============================================ */

/* Grid layout - Responsive with fixed columns per breakpoint */
/* Breakpoints account for sidebar width (240px) + content area */

/* Desktop XL: 5 cards per row (viewport 1680px+ = content 1440px+) */
@media (min-width: 1680px) {
  .home-experts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 100%;
    width: 100%;
  }
}

/* Desktop L: 4 cards per row (viewport 1440-1679px = content 1200-1439px) */
@media (min-width: 1440px) and (max-width: 1679px) {
  .home-experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 100%;
    width: 100%;
  }
}

/* Desktop M: 3 cards per row (viewport 1024-1439px = content 784-1199px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .home-experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
    width: 100%;
  }
}

/* Tablet: 2 cards per row (viewport 640-1023px = content 400-783px) */
@media (min-width: 640px) and (max-width: 1023px) {
  .home-experts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
    width: 100%;
  }
}

/* Premium Expert Card */
.expert-card-premium {
  background: white;
  border-radius: 16px;
  overflow: visible;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  position: relative;
  min-width: 220px;
}

.expert-card-premium:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Expert Image - Option 4: Subtle Gradient + Texture Overlay */
.expert-card-image {
  position: relative;
  width: 100%;
  padding: 24px 16px 16px;
  background: linear-gradient(to bottom, #F0F4F8, #FAFBFC);
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Ultra-subtle noise texture overlay (2-3% opacity) */
.expert-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.5;
  pointer-events: none;
  border-radius: 16px 16px 0 0;
}

/* Subtle Gradient Washes - Deterministic variation (2-3% contrast) */
.expert-card-premium:nth-child(6n+1) .expert-card-image {
  background: linear-gradient(to bottom, #EFF6FF, #F9FAFB); /* Pale blue → off-white */
}

.expert-card-premium:nth-child(6n+2) .expert-card-image {
  background: linear-gradient(to bottom, #F5F3FF, #FAFAF9); /* Lavender → warm gray */
}

.expert-card-premium:nth-child(6n+3) .expert-card-image {
  background: linear-gradient(to bottom, #ECFDF5, #FAFBFC); /* Mint → white */
}

.expert-card-premium:nth-child(6n+4) .expert-card-image {
  background: linear-gradient(to bottom, #FEF3C7, #FEFCF3); /* Sand → cream */
}

.expert-card-premium:nth-child(6n+5) .expert-card-image {
  background: linear-gradient(to bottom, #F1F5F9, #F8FAFC); /* Cool gray → lighter gray */
}

.expert-card-premium:nth-child(6n+6) .expert-card-image {
  background: linear-gradient(to bottom, #FFF1F2, #FEF9FA); /* Soft peach → blush white */
}

.expert-card-image img {
  width: 120px;
  height: 120px;
  max-width: 120px;
  max-height: 120px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.expert-card-placeholder {
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #e5e7eb;
  color: #9ca3af;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.expert-card-placeholder i {
  width: 40px;
  height: 40px;
  color: #9ca3af;
}

/* Card Body */
.expert-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Identity Block - Center aligned for premium feel */
.expert-identity {
  margin-bottom: 0;
  text-align: center;
  /* padding-bottom: 12px;
  border-bottom: 1px solid #f3f4f6; */
}

.expert-card-name {
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 6px 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.verified-badge-icon {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.verified-icon-inline {
  width: 16px;
  height: 16px;
  stroke-width: 0;
}

.verified-icon-inline.verified {
  color: #10b981;
  fill: #10b981;
}

.verified-icon-inline.not-verified {
  color: #9ca3af;
  fill: #9ca3af;
}

.expert-meta-line {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.expert-meta-line .placeholder-text {
  color: #9ca3af;
  font-style: italic;
}

/* ============================================
   Expert Bio Section
   ============================================ */
.expert-bio {
  /* padding: 12px 0;
  border-bottom: 1px solid #f3f4f6; */
}

.expert-bio-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
  text-align: center;
  
  /* Text truncation - 3 lines max */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Rating Line (Trust Indicator) - Left aligned below divider */
.expert-rating-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #111827;
  font-weight: 500;
  padding-top: 4px;
}

.rating-star-icon {
  width: 16px;
  height: 16px;
  color: #f59e0b;
  fill: #f59e0b;
}

.rating-text {
  color: #374151;
}

.rating-text.placeholder-text {
  color: #9ca3af;
  font-style: italic;
  font-weight: 400;
}

/* Pricing Line */
.expert-pricing-line {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.expert-pricing-line .price-not-set,
.expert-pricing-line .placeholder-text {
  color: #9ca3af;
  font-weight: 500;
  font-style: italic;
}

/* AI Assistant Badge */
.expert-ai-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  border: 1px solid #C7D2FE;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #4F46E5;
  margin-bottom: 12px;
  width: 100%;
}

.expert-ai-badge.ai-badge-unavailable {
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
  border-color: #E5E7EB;
  color: #6B7280;
}

.ai-badge-icon {
  width: 16px;
  height: 16px;
}

/* Stats Tooltip - Hidden by default, shown on card hover */
.expert-stats-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 100;
}

.expert-card-premium:hover .expert-stats-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-12px);
}

.tooltip-content {
  background: #1F2937;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.tooltip-content::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #1F2937;
}

.stat-tooltip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.tooltip-icon {
  width: 16px;
  height: 16px;
  color: #9CA3AF;
  flex-shrink: 0;
}

/* Card Actions - Premium CTA */
.expert-card-actions {
  margin-top: auto;
  padding-top: 4px;
}

.btn-book-call {
  width: 100%;
}

/* Primary Button - Premium gradient with taller height */
.btn-card-primary {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  white-space: nowrap;
}

.btn-card-primary .btn-text {
  white-space: nowrap;
  font-size: 12px;
}

.btn-card-primary .btn-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.btn-card-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.btn-card-primary:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Secondary Button */
.btn-card-secondary {
  width: 100%;
  padding: 12px 16px;
  background: white;
  color: #2563eb;
  border: 1.5px solid #2563eb;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-card-secondary:hover:not(:disabled) {
  background: #eff6ff;
}

.btn-card-secondary:disabled {
  background: #f9fafb;
  color: #9ca3af;
  border-color: #e5e7eb;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Icon styling for card buttons */
.btn-card-primary .btn-icon,
.btn-card-secondary .btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #fff;
}

.btn-card-primary .btn-icon svg,
.btn-card-secondary .btn-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Ensure Lucide icons render properly in card buttons */
.btn-card-primary i[data-lucide],
.btn-card-secondary i[data-lucide] {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-card-primary i[data-lucide] svg,
.btn-card-secondary i[data-lucide] svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* AI Unavailable Text */
.ai-unavailable-text {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  font-style: italic;
  padding: 8px;
}

/* Legacy styles for compatibility */
.home-expert-actions {
  display: flex;
  gap: var(--space-2);
  width: 100%;
}

.home-expert-actions .btn {
  flex: 1;
}

/* ============================================
   Category Cards (Horizontal Scroll)
   ============================================ */
.home-categories-scroll {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  padding-bottom: var(--space-2);
  scrollbar-width: thin;
  padding-top: 10px;
}

.home-categories-scroll::-webkit-scrollbar {
  height: 6px;
}

.home-categories-scroll::-webkit-scrollbar-track {
  background: var(--color-gray-100);
  border-radius: var(--radius-full);
}

.home-categories-scroll::-webkit-scrollbar-thumb {
  background: var(--color-gray-300);
  border-radius: var(--radius-full);
}

.home-category-card {
  min-width: 160px;
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-category-card:hover {
  /* border-color: var(--color-primary);
  box-shadow: var(--shadow-lg); */
  transform: translateY(-2px);
}

.home-category-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-2);
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-category-icon svg,
.home-category-icon i {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  stroke: #555;
}

.home-category-card h4 {
  font-size: 1.25rem !important; /* 20px - text-xl - INCREASED */
  margin: 0 0 var(--space-2);
  color : #555;
}

.home-category-card p {
  font-size: 1.125rem !important; /* 18px - text-lg - INCREASED */
  margin: 0;
}

/* ============================================
   AI Assistant Cards (Horizontal Scroll)
   ============================================ */
.home-assistants-scroll {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  padding-bottom: var(--space-2);
  scrollbar-width: thin;
}

.home-assistants-scroll::-webkit-scrollbar {
  height: 6px;
}

.home-assistants-scroll::-webkit-scrollbar-track {
  background: var(--color-gray-100);
  border-radius: var(--radius-full);
}

.home-assistants-scroll::-webkit-scrollbar-thumb {
  background: var(--color-gray-300);
  border-radius: var(--radius-full);
}

.home-assistant-card {
  min-width: 240px;
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-assistant-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.home-assistant-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-3);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-assistant-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.home-assistant-card h4 {
  font-size: 1.25rem !important; /* 20px - text-xl - INCREASED */
  font-weight: 700 !important;
  margin: 0 0 var(--space-2);
  text-align: center;
}

.home-assistant-card p {
  font-size: 1.125rem !important; /* 18px - text-lg - INCREASED */
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   Business Cards
   ============================================ */
/* Business Grid - Responsive with fixed columns per breakpoint */
/* Breakpoints account for sidebar width (240px) + content area */

/* Desktop XL: 3 cards per row (viewport 1440px+ = content 1200px+) */
@media (min-width: 1440px) {
  .home-businesses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

/* Desktop M & Tablet: 2 cards per row (viewport 640-1439px = content 400-1199px) */
@media (min-width: 640px) and (max-width: 1439px) {
  .home-businesses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }
}

.home-business-card {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-business-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.home-business-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-business-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-business-initials {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--color-gray-600);
}

.home-business-card h4 {
  font-size: 1.25rem !important; /* 20px - text-xl - INCREASED */
  font-weight: 700 !important;
  margin: 0 0 var(--space-2);
}

.home-business-card p {
  font-size: 1.125rem !important; /* 18px - text-lg - INCREASED */
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   Conversation List
   ============================================ */
.home-conversations-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.home-conversation-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-conversation-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.home-conversation-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--color-gray-100);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-conversation-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-conversation-initials {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-gray-600);
}

.home-conversation-content {
  flex: 1;
  min-width: 0;
}

.home-conversation-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
}

.home-conversation-header h4 {
  font-size: 1.25rem !important; /* 20px - text-xl - INCREASED */
  font-weight: 700 !important;
  margin: 0;
  flex: 1;
}

.home-conversation-header span {
  font-size: 1rem !important; /* 16px - text-base - INCREASED */
}

.home-conversation-content p {
  font-size: 1.125rem !important; /* 18px - text-lg - INCREASED */
  margin: var(--space-1) 0 0;
}

.home-conversation-badge {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 600;
  flex-shrink: 0;
}

/* ============================================
   Meeting List
   ============================================ */
.home-meetings-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.home-meeting-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-meeting-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.home-meeting-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-meeting-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
}

.home-meeting-content {
  flex: 1;
}

.home-meeting-content h4 {
  font-size: 1.25rem !important; /* 20px - text-xl - INCREASED */
  font-weight: 700 !important;
  margin: 0 0 var(--space-1);
}

.home-meeting-content p {
  font-size: 1.125rem !important; /* 18px - text-lg - INCREASED */
  margin: 0;
}

/* ============================================
   Empty States
   ============================================ */
.home-empty-state {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
}

.home-empty-state svg {
  width: 64px;
  height: 64px;
  stroke: var(--color-gray-400);
  margin: 0 auto var(--space-3);
}

.home-empty-state p {
  font-size: 1.125rem !important; /* 18px - text-lg - INCREASED */
  color: var(--color-gray-600);
  margin: 0 0 var(--space-4);
}

/* ============================================
   Profile Completion Banner
   ============================================ */
.home-profile-banner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: var(--radius-lg);
  color: white;
}

.home-profile-banner-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-profile-banner-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.home-profile-banner-content {
  flex: 1;
}

.home-profile-banner-content h3 {
  font-size: 1.875rem !important; /* 30px - text-3xl - INCREASED */
  font-weight: 700 !important;
  color: white;
  margin: 0 0 var(--space-2);
}

.home-profile-banner-content p {
  font-size: 1.25rem !important; /* 20px - text-xl - INCREASED */
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--space-3);
  line-height: 1.5;
}

.home-profile-progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-1);
}

.home-profile-progress-bar {
  height: 100%;
  background: white;
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.home-profile-percent {
  font-size: 1rem !important; /* 16px - text-base - INCREASED */
  font-weight: 600;
  margin: 0;
}

.home-profile-banner .btn {
  background: white;
  color: #667eea;
  flex-shrink: 0;
}

.home-profile-banner .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* ============================================
   Business Card CSS moved to businesses.css
   ============================================ */

/* ============================================
   MOBILE RESPONSIVE DESIGN
   ChatGPT-Style UX for Mobile
   ============================================ */

/* Desktop: Hide mobile-specific elements */
@media (min-width: 769px) {
  .mobile-menu-btn,
  .mobile-brand,
  .mobile-overlay,
  .mobile-menu-header,
  .mobile-user-profile-bottom,
  .mobile-more-prompts,
  .mobile-mode-switcher-btn,
  .mobile-right-drawer,
  .mobile-right-overlay,
  .mobile-bottom-menu {
    display: none !important;
  }
}

/* Mobile: Hide sidebar by default, show hamburger menu */
@media (max-width: 768px) {
  
  /* ========== Mobile Header with Hamburger Menu ========== */
  
  /* Hide desktop search bars and filters on mobile (moved to bottom menu) */
  .topbar-search,
  .ap-actions .btn {
    display: none !important;
  }
  
  /* Keep only mobile-specific buttons and notifications visible */
  .ap-actions .mobile-mode-switcher-btn,
  .ap-actions .notifications-bell-container {
    display: flex !important;
  }
  
  .ap-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid var(--color-gray-200);
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Mobile Hamburger Menu Button */
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    order: -1;
  }
  
  .mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-gray-700);
    stroke-width: 2;
  }
  
  /* Mobile Brand Logo (Center) - Hide static brand, show tab-aware title */
  .mobile-brand {
    display: none;
  }
  
  /* Show section title on mobile instead of static brand */
  .ap-topbar .ap-title {
    display: block !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  
  .ap-topbar .ap-title .t {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray-900);
  }
  
  .ap-topbar .ap-title .s {
    display: none;
  }
  
  /* Mobile Notification Bell (Right) */
  .ap-actions {
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }
  
  /* Hide desktop center actions and search on mobile */
  .ap-topbar .topbar-center {
    display: none !important;
  }
  
  /* ========== Mobile Sidebar Overlay ========== */
  .ap-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: left 0.3s ease;
    box-shadow: none;
  }
  
  .ap-sidebar.mobile-open {
    left: 0;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Mobile Overlay Background */
  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* ========== Mobile Menu Header ========== */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4);
    border-bottom: 1px solid var(--color-gray-200);
  }

  .ap-brand{
    display: none;
  }
  
  .mobile-menu-header .ap-brand {
    margin: 0;
  }
  
  .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
  }
  
  .mobile-menu-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gray-700);
    stroke-width: 2;
  }
  
  /* ========== Mobile User Profile (Bottom Sticky) ========== */
  .mobile-user-profile-bottom {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-4);
    background: white;
    border-top: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: auto;
  }
  
  .mobile-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-secondary-500), var(--color-primary-500));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    font-weight: 600;
    font-size: 18px;
  }
  
  .mobile-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .mobile-user-info {
    flex: 1;
    min-width: 0;
  }
  
  .mobile-user-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .mobile-user-email {
    font-size: 13px;
    color: var(--color-gray-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* ========== Mobile Mode Switcher Button ========== */
  .mobile-mode-switcher-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
  }
  
  .mobile-mode-switcher-btn:hover {
    background: var(--color-gray-100);
  }
  
  .mobile-mode-switcher-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gray-700);
    stroke-width: 2;
  }
  
  /* ========== Mobile Right Drawer ========== */
  .mobile-right-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: none;
    display: flex;
    flex-direction: column;
  }
  
  .mobile-right-drawer.mobile-open {
    right: 0;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
  }
  
  .mobile-right-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .mobile-right-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4);
    border-bottom: 1px solid var(--color-gray-200);
  }
  
  .mobile-drawer-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin: 0;
  }
  
  .mobile-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
  }
  
  .mobile-drawer-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gray-700);
    stroke-width: 2;
  }
  
  .mobile-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-4);
  }
  
  .mobile-current-mode {
    padding: var(--space-4);
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
  }
  
  .mobile-current-mode .mode-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-500);
    margin-bottom: var(--space-2);
    font-weight: 600;
  }
  
  .mobile-current-mode .mode-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray-900);
  }
  
  .mobile-drawer-section {
    margin-bottom: var(--space-6);
  }
  
  .mobile-drawer-section h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-500);
    margin-bottom: var(--space-3);
    font-weight: 600;
  }
  
  .mobile-drawer-action {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: white;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    color: var(--color-gray-900);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: var(--space-2);
    text-decoration: none;
    width: 100%;
    text-align: left;
  }
  
  .mobile-drawer-action:hover {
    background: var(--color-gray-50);
    border-color: var(--color-gray-400);
  }
  
  .mobile-drawer-action i,
  .mobile-drawer-action svg:not(.chevron-icon) {
    width: 20px;
    height: 20px;
    color: var(--color-gray-600);
  }
  
  .mobile-drawer-action .chevron-icon {
    width: 16px;
    height: 16px;
    stroke: var(--color-gray-500);
    margin-left: auto;
    transition: transform var(--transition-base);
  }
  
  .mobile-drawer-action .chevron-icon.rotated {
    transform: rotate(180deg);
  }
  
  .mobile-drawer-action-primary {
    background: var(--color-primary-600);
    border-color: var(--color-primary-600);
    color: white;
  }
  
  .mobile-drawer-action-primary:hover {
    background: var(--color-primary-700);
    border-color: var(--color-primary-700);
  }
  
  .mobile-drawer-action-primary i {
    color: white;
  }
  
  .mobile-business-dropdown {
    margin-top: var(--space-2);
    margin-left: var(--space-4);
    padding-left: var(--space-4);
    border-left: 2px solid var(--color-gray-200);
  }
  
  .mobile-business-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: white;
    border-radius: var(--radius-md);
    color: var(--color-gray-900);
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: var(--space-2);
    text-decoration: none;
  }
  
  .mobile-business-item:hover {
    background: var(--color-gray-50);
  }
  
  .business-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-gray-600);
  }
  
  .business-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .business-info {
    flex: 1;
    min-width: 0;
  }
  
  .business-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .business-role {
    font-size: 12px;
    color: var(--color-gray-600);
  }
  
  .mobile-business-add {
    color: var(--color-primary-600);
    font-weight: 500;
  }
  
  .mobile-business-add i {
    width: 20px;
    height: 20px;
  }
  
  /* ========== Mobile Bottom Sticky Menus (Tab-Specific) ========== */
  .mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--color-gray-200);
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    z-index: 100;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
  }
  
  .mobile-bottom-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
    padding: var(--space-2) var(--space-3);
  }
  
  .mobile-bottom-search i {
    width: 20px;
    height: 20px;
    color: var(--color-gray-500);
    flex-shrink: 0;
  }
  
  .mobile-bottom-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--color-gray-900);
    outline: none;
  }
  
  .mobile-bottom-search input::placeholder {
    color: var(--color-gray-500);
  }
  
  .mobile-bottom-search-full {
    flex: 1;
    width: 100%;
  }
  
  .mobile-bottom-action-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-primary-600);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition-fast);
  }
  
  .mobile-bottom-action-btn:hover {
    background: var(--color-primary-700);
  }
  
  .mobile-bottom-action-btn i {
    width: 18px;
    height: 18px;
  }
  
  /* Add bottom padding to content when bottom menu is visible */
  .ap-content {
    padding-bottom: 0;
  }
  
  /* Specific padding for sections with bottom menus */
  .marketplace-container,
  .home-section,
  .network-home-view {
    padding-bottom: 80px;
  }
  
  /* ========== Mobile Main Content Adjustments ========== */
  .ap-main {
    margin-left: 0;
    width: 100%;
  }
  
  .ap-content {
    padding: 0;
  }
  
  /* ========== Mobile Home View ========== */
  .network-home-view {
    padding: 0;
    max-width: 100%;
  }
  
  /* ========== Mobile Hero Section (Search-First) ========== */
  .home-ai-discovery-header {
    padding: var(--space-6) var(--space-4);
    margin-bottom: var(--space-4);
    background: white;
  }
  
  .home-ai-discovery-header .chatgpt-hero {
    margin-bottom: var(--space-4);
  }
  
  .home-ai-discovery-header .chatgpt-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .home-ai-discovery-header .chatgpt-search-box {
    max-width: 100%;
    margin-bottom: var(--space-3);
  }
  
  .home-ai-discovery-header .chatgpt-input {
    padding: 12px 48px 12px 40px;
    font-size: 16px;
  }
  
  /* ========== Mobile Suggestion Pills (Limit to 2, Add "More") ========== */
  .chatgpt-suggested-prompts {
    flex-direction: column;
    gap: var(--space-2);
    max-width: 100%;
  }
  
  .chatgpt-prompt-chip {
    width: 100%;
    text-align: center;
    padding: var(--space-3) var(--space-4);
    font-size: 14px;
  }
  
  /* Hide extra prompts on mobile, show only 2 */
  .chatgpt-prompt-chip:nth-child(n+3) {
    display: none;
  }
  
  .mobile-more-prompts {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--space-3);
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  }
  
  /* Show all prompts when expanded */
  .chatgpt-suggested-prompts.expanded .chatgpt-prompt-chip {
    display: block;
  }
  
  .chatgpt-suggested-prompts.expanded .mobile-more-prompts {
    display: none;
  }
  
  /* ========== Mobile Section Headers ========== */
  .home-section {
    margin-bottom: var(--space-6);
    padding: 0 var(--space-4);
  }
  
  .home-section-header {
    margin-bottom: var(--space-3);
  }
  
  .home-section-header h2 {
    font-size: 20px !important;
    font-weight: 700 !important;
  }
  
  .home-section-header a {
    font-size: 14px !important;
  }
  
  /* ========== Mobile Expert Cards (Horizontal Swipe on Home Screen Only) ========== */
  /* Home screen: horizontal scroll */
  .network-home-view .home-experts-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0;
    margin: 0 -16px;
    padding: 0 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .network-home-view .home-experts-grid::-webkit-scrollbar {
    display: none;
  }
  
  .network-home-view .expert-card-premium {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
  
  /* Experts screen: vertical grid layout */
  .marketplace-container .home-experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    padding: 0;
    overflow-x: visible;
  }
  
  .marketplace-container .expert-card-premium {
    flex: none;
    width: 100%;
  }
  
  /* Mobile Expert Card Adjustments - Premium Layout */
  .expert-card-image {
    padding: 20px 12px 12px;
  }
  
  .expert-card-image img {
    width: 100px;
    height: 100px;
    max-width: 100px;
    max-height: 100px;
  }
  
  .expert-card-placeholder {
    width: 100px;
    height: 100px;
  }
  
  .expert-card-placeholder i {
    width: 32px;
    height: 32px;
  }
  
  .expert-card-body {
    padding: 12px;
    gap: 8px;
  }
  
  .expert-card-name {
    font-size: 15px;
    font-weight: 600;
  }
  
  .expert-meta-line {
    font-size: 12px;
  }
  
  .expert-rating-line {
    font-size: 13px;
  }
  
  .expert-pricing-line {
    font-size: 13px;
  }
  
  .expert-ai-badge {
    padding: 6px 10px;
    font-size: 11px;
    margin-bottom: 6px;
  }
  
  .btn-card-primary,
  .btn-card-secondary {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  /* ========== Mobile Categories (Horizontal Scroll) ========== */
  .home-categories-scroll {
    margin: 0 -16px;
    padding: 0 16px;
    scrollbar-width: none;
  }
  
  .home-categories-scroll::-webkit-scrollbar {
    display: none;
  }
  
  .home-category-card {
    min-width: 140px;
  }
  
  .home-category-card h4 {
    font-size: 14px !important;
  }
  
  .home-category-card p {
    font-size: 12px !important;
  }
  
  /* ========== Mobile Businesses Grid ========== */
  .home-businesses-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0;
    margin: 0 -16px;
    padding: 0 16px;
    scrollbar-width: none;
  }
  
  .home-businesses-grid::-webkit-scrollbar {
    display: none;
  }
  
  .business-card-premium {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
  
  /* ========== Mobile Meetings Overview ========== */
  .meetings-overview-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .next-meeting-card,
  .overview-stats-card {
    width: 100%;
  }
  
  /* ========== Progressive Disclosure ========== */
  .home-section.below-fold {
    display: none;
  }
  
  .home-section.below-fold.visible {
    display: block;
  }
  
  /* ========== Mobile Spacing Improvements ========== */
  .home-ai-discovery-header,
  .home-section {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  
  /* Increase tap target sizes */
  .chatgpt-send-btn {
    width: 36px;
    height: 36px;
  }
  
  .ap-link {
    padding: var(--space-3) var(--space-4);
    min-height: 44px;
  }
  
  /* ========== Mobile Profile Banner ========== */
  .home-profile-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-4);
  }
  
  .home-profile-banner-icon {
    margin: 0 auto var(--space-3);
  }
  
  .home-profile-banner-content h3 {
    font-size: 20px !important;
  }
  
  .home-profile-banner-content p {
    font-size: 14px !important;
  }
  
  .home-profile-banner .btn {
    width: 100%;
  }
  
  /* ========== Mobile Conversation List ========== */
  .home-conversations-list {
    gap: var(--space-2);
  }
  
  .home-conversation-item {
    padding: var(--space-3);
  }
  
  .home-conversation-header h4 {
    font-size: 15px !important;
  }
  
  .home-conversation-content p {
    font-size: 14px !important;
  }
  
  /* ========== Mobile Empty States ========== */
  .home-empty-state {
    padding: var(--space-8) var(--space-4);
  }
  
  .home-empty-state svg {
    width: 48px;
    height: 48px;
  }
  
  .home-empty-state p {
    font-size: 14px !important;
  }
}

/* ========== Tablet Adjustments (768px - 1024px) ========== */
@media (min-width: 769px) and (max-width: 1024px) {
  .home-experts-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
  }
  
  .home-businesses-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

/* ============================================
   Footer Section with Policy Links
   ============================================ */
.network-home-footer {
  margin-top: var(--space-12);
  padding: var(--space-8) 0 var(--space-6);
  border-top: 1px solid var(--color-gray-200);
  text-align: center;
}

.network-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2) var(--space-6);
  margin-bottom: var(--space-4);
}

.network-footer-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-600);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.network-footer-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.network-footer-copyright {
  margin-top: var(--space-4);
}

.network-footer-copyright p {
  font-size: 13px;
  color: var(--color-gray-500);
  margin: 0;
}

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
  .network-home-footer {
    margin-top: var(--space-8);
    padding: var(--space-6) 0 var(--space-4);
  }
  
  .network-footer-links {
    gap: var(--space-3) var(--space-4);
  }
  
  .network-footer-link {
    font-size: 13px;
  }
  
  .network-footer-copyright p {
    font-size: 12px;
  }
}
