/* ═══════════════════════════════════════════════════════════════════════════
   PyStatR+ SERVICES PAGE - NEW COMPONENTS CSS
   Add this to your styles.css or include as a separate file
   ═══════════════════════════════════════════════════════════════════════════ */

/* ==========================================================================
   PRICING TABLES (Logo & Website Comparison)
   ========================================================================== */

.logo-pricing-section,
.webdev-comparison {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.logo-pricing-section h4,
.webdev-comparison h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Light section versions */
.services-section-light .webdev-comparison {
  background: rgba(11, 17, 32, 0.03);
  border: 1px solid rgba(11, 17, 32, 0.1);
}

.services-section-light .webdev-comparison h4 {
  color: #0f172a;
}

.pricing-table-wrapper,
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.5rem;
  padding: 0 0.5rem;
}

.pricing-table,
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}

.pricing-table th,
.comparison-table th {
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid rgba(34, 211, 238, 0.3);
}

.pricing-table td,
.comparison-table td {
  padding: 1rem;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.pricing-table tbody tr:hover,
.comparison-table tbody tr:hover {
  background: rgba(34, 211, 238, 0.05);
}

.pricing-table td strong,
.comparison-table td strong {
  color: #ffffff;
}

/* Light section table styles */
.services-section-light .comparison-table th {
  background: rgba(34, 211, 238, 0.1);
  color: #0891b2;
}

.services-section-light .comparison-table td {
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

.services-section-light .comparison-table td strong {
  color: #0f172a;
}

.services-section-light .comparison-table tbody tr:hover {
  background: rgba(34, 211, 238, 0.05);
}

.comparison-note {
  text-align: center;
  margin-top: 1.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.comparison-note a {
  color: #22d3ee;
  text-decoration: none;
}

.comparison-note a:hover {
  text-decoration: underline;
}

.services-section-light .comparison-note {
  color: #64748b;
}

.services-section-light .comparison-note a {
  color: #0891b2;
}

/* ==========================================================================
   DESIGN PROCESS SECTION
   ========================================================================== */

.design-process-section {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 16px;
}

.design-process-section h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.process-step-item {
  text-align: center;
  padding: 1rem;
}

.process-step-item .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0B1120;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.process-step-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.process-step-item p {
  color: #94a3b8;
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   DELIVERABLES & NOTES
   ========================================================================== */

.deliverables-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 12px;
}

.deliverables-note h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #22d3ee;
  margin-bottom: 1rem;
}

.deliverables-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.deliverable-item {
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.revisions-note {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 12px;
}

.revisions-note h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #a78bfa;
  margin-bottom: 0.5rem;
}

.revisions-note p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin: 0;
}

/* ==========================================================================
   GRAPHICS SERVICES SECTION
   ========================================================================== */

.services-section-dark-alt {
  background: linear-gradient(180deg, #0f172a 0%, #0B1120 100%);
  padding: 4rem 0;
}

.graphics-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.graphics-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.graphics-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(34, 211, 238, 0.3);
  transform: translateY(-4px);
}

.graphics-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.graphics-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.graphics-card p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.graphics-price {
  display: inline-block;
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.graphics-note {
  text-align: center;
  padding: 1rem;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 10px;
}

.graphics-note p {
  color: #f59e0b;
  font-size: 0.9rem;
  margin: 0;
}

/* ==========================================================================
   DEPOSIT BANNER & RESPONSIBILITIES
   ========================================================================== */

.deposit-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(234, 179, 8, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.deposit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.deposit-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.deposit-content p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.responsibilities-box {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.responsibilities-box h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 1rem;
}

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

.responsibility-item strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.responsibility-item ul {
  margin: 0;
  padding-left: 1.25rem;
}

.responsibility-item li {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   ADDON BANNER
   ========================================================================== */

.addon-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(168, 85, 247, 0.02));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  margin: 2rem 0;
}

.addon-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.addon-content {
  flex: 1;
}

.addon-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #a78bfa;
  margin-bottom: 0.5rem;
}

.addon-content p {
  color: #64748b;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.addon-cta {
  flex-shrink: 0;
  padding: 0.75rem 1.25rem;
  background: rgba(139, 92, 246, 0.1);
  color: #a78bfa;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.addon-cta:hover {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}

/* ==========================================================================
   TRAINING CARDS (Dark Version)
   ========================================================================== */

.training-card-dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.training-card-dark:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(34, 211, 238, 0.3);
}

.training-icon-dark {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.training-card-dark h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.training-audience {
  font-size: 0.8rem;
  color: #22d3ee;
  font-weight: 600;
  margin-bottom: 1rem;
}

.training-card-dark > p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.training-features-dark {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.training-features-dark li {
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.training-features-dark li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22d3ee;
  font-weight: 700;
}

.training-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.format-badge {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.training-cta-dark {
  display: inline-block;
  color: #22d3ee;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.training-cta-dark:hover {
  color: #67e8f9;
}

.training-pricing-info {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 16px;
  text-align: center;
}

.training-pricing-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #22d3ee;
  margin-bottom: 1rem;
}

.pricing-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pricing-option {
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.training-pricing-info > p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */

@media (max-width: 1024px) {
  .process-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .graphics-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Tables */
  .pricing-table,
  .comparison-table {
    font-size: 0.8rem;
  }
  
  .pricing-table th,
  .comparison-table th,
  .pricing-table td,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
  
  /* Design Process */
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .process-step-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
  }
  
  .process-step-item .step-num {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    margin-bottom: 0;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .process-step-item strong {
    margin-bottom: 0.25rem;
  }
  
  /* Graphics Grid */
  .graphics-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .graphics-card {
    padding: 1rem;
  }
  
  .graphics-icon {
    font-size: 1.5rem;
  }
  
  .graphics-card h3 {
    font-size: 0.9rem;
  }
  
  /* Responsibilities */
  .responsibilities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Addon Banner */
  .addon-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .addon-cta {
    width: 100%;
    text-align: center;
  }
  
  /* Deposit Banner */
  .deposit-banner {
    flex-direction: column;
    text-align: center;
  }
  
  /* Deliverables */
  .deliverables-grid {
    justify-content: center;
  }
  
  /* Pricing Options */
  .pricing-options {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-option {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .graphics-services-grid {
    grid-template-columns: 1fr;
  }
  
  .deliverable-item {
    width: 100%;
    text-align: center;
  }
  
  .logo-pricing-section,
  .webdev-comparison,
  .design-process-section {
    padding: 1.5rem 1rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    border-radius: 0;
  }
}
