/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES PAGE STYLES - PyStatR+
   File: scss/pages/services.css
   
   This file owns ALL Services page styling including:
   - Hero section
   - Service cards (dark and light variants)
   - Pricing tables and comparison tables
   - Design process section
   - Training cards
   - CTA sections
   - Mobile responsive behavior
   
   NO other file should override these styles.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */

:root {
  --navbar-height: 70px;
  --pystatr-deep-blue: #003366;
  --pystatr-navy: #1E3A8A;
  --pystatr-cyan: #22d3ee;
  --pystatr-gold: #FACC15;
  --pystatr-deep-black: #0B1120;
  --pystatr-slate: #1E293B;
  --pystatr-grey: #F7F9FC;
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */

.services-hero .container,
.services-section-dark .container,
.services-section-dark-alt .container,
.services-section-light .container,
.services-cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* ==========================================================================
   SERVICES HERO SECTION
   ========================================================================== */

.services-hero {
  position: relative;
  padding-top: calc(var(--navbar-height) + 4rem);
  padding-bottom: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background: linear-gradient(135deg, #0B1120 0%, #1E293B 50%, #0B1120 100%);
  overflow: hidden;
  text-align: center;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.services-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.services-hero-orb-1 {
  top: 10%;
  left: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
  animation: floatOrb 8s ease-in-out infinite;
}

.services-hero-orb-2 {
  bottom: 10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.services-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.05));
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 50px;
  color: #22d3ee;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.services-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.services-hero-title .text-gradient {
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  color: #9CA3AF;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.services-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #22d3ee;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #9CA3AF;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(34, 211, 238, 0.3), transparent);
}

.services-hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #22d3ee, transparent);
}

/* ==========================================================================
   SECTION SEPARATORS
   ========================================================================== */

.section-separator-white {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* ==========================================================================
   DARK SECTIONS
   ========================================================================== */

.services-section-dark {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0B1120 0%, #1E293B 100%);
}

.services-section-dark.full-width {
  width: 100%;
}

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

.services-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(34, 211, 238, 0.05));
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 50px;
  color: #22d3ee;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.services-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.services-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #9CA3AF;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   LIGHT SECTIONS
   ========================================================================== */

.services-section-light {
  padding: 5rem 0;
  background: #ffffff;
}

.services-section-header-light {
  text-align: center;
  margin-bottom: 3rem;
}

.services-label-light {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(34, 211, 238, 0.05));
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 50px;
  color: #0891b2;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.services-title-light {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 1rem;
}

.services-subtitle-light {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   SERVICE GRIDS
   ========================================================================== */

.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid-3-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================================
   DARK SERVICE CARDS
   ========================================================================== */

.service-card-dark {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card-dark:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.3);
}

.service-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-dark:hover .service-card-glow {
  opacity: 1;
}

.service-card-glow.youtube { background: linear-gradient(90deg, #FFD700, #FACC15); }
.service-card-glow.facebook { background: linear-gradient(90deg, #1877F2, #4a9eff); }
.service-card-glow.blog { background: linear-gradient(90deg, #22d3ee, #3b82f6); }
.service-card-glow.design { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.service-card-glow.flyer { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }

.service-card-inner {
  padding: 2rem;
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-wrapper.youtube { background: rgba(255, 215, 0, 0.15); color: #FFD700; }
.service-icon-wrapper.facebook { background: rgba(24, 119, 242, 0.15); color: #1877F2; }
.service-icon-wrapper.blog { background: rgba(34, 211, 238, 0.15); color: #22d3ee; }
.service-icon-wrapper.design { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.service-icon-wrapper.flyer { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }

.service-icon-svg {
  width: 28px;
  height: 28px;
}

.service-icon-emoji {
  font-size: 1.75rem;
}

.service-badge-free {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.service-badge-guarantee {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.service-card-dark h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.service-card-dark p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

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

.service-features li:last-child {
  border-bottom: none;
}

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

.service-pricing {
  margin-bottom: 1.5rem;
}

.service-pricing .price-label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  color: #9CA3AF;
  margin-bottom: 0.25rem;
}

.service-pricing .price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #22d3ee;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-cta.youtube { background: #FFD700; color: #0B1120; }
.service-cta.youtube:hover { background: #EAB308; box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }

.service-cta.facebook { background: #1877F2; color: white; }
.service-cta.facebook:hover { background: #1466d8; box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3); }

.service-cta.blog { background: linear-gradient(135deg, #22d3ee, #3b82f6); color: white; }
.service-cta.blog:hover { box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3); }

.service-cta.design { background: linear-gradient(135deg, #f59e0b, #d97706); color: white; }
.service-cta.design:hover { box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3); }

.service-cta.flyer { background: linear-gradient(135deg, #8b5cf6, #7c3aed); color: white; }
.service-cta.flyer:hover { box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3); }

.cta-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.service-cta:hover .cta-arrow {
  transform: translateX(4px);
}

.service-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid rgba(34, 211, 238, 0.5);
  border-radius: 10px;
  color: #22d3ee;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-cta-outline:hover {
  background: rgba(34, 211, 238, 0.1);
  border-color: #22d3ee;
}

/* ==========================================================================
   LIGHT SERVICE CARDS
   ========================================================================== */

.service-card-light {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.service-card-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-icon-light {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.service-icon-light.cyan { background: rgba(34, 211, 238, 0.1); }
.service-icon-light.emerald { background: rgba(16, 185, 129, 0.1); }
.service-icon-light.purple { background: rgba(139, 92, 246, 0.1); }

.service-card-light h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 0.75rem;
}

.service-card-light p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-topics {
  margin-bottom: 1.5rem;
}

.service-topics h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topic-tag {
  padding: 0.375rem 0.75rem;
  background: #f3f4f6;
  color: #4b5563;
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.topic-tag:hover {
  background: #e5e7eb;
}

.service-features-light {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-features-light li {
  color: #4b5563;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid #f3f4f6;
}

.service-features-light li:last-child {
  border-bottom: none;
}

.service-features-light li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.service-pricing-light {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
}

.service-pricing-light .price-label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  color: #6B7280;
  margin-bottom: 0.25rem;
}

.service-pricing-light .price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0B1120;
}

.service-pricing-light .price-unit {
  font-size: 1rem;
  font-weight: 600;
  color: #6B7280;
}

.service-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-cta-light.cyan {
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  color: white;
}

.service-cta-light.cyan:hover {
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.service-cta-light.emerald {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.service-cta-light.emerald:hover {
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.service-cta-light.purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.service-cta-light.purple:hover {
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.payment-badge {
  padding: 0.375rem 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
}

/* ==========================================================================
   SATISFACTION BANNER
   ========================================================================== */

.satisfaction-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  margin-bottom: 3rem;
}

.satisfaction-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.satisfaction-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   LOGO PRICING TABLE
   ========================================================================== */

.logo-pricing-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.logo-pricing-section h4 {
  color: #003366;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.pricing-table thead tr {
  background: #ffffff;
  border-bottom: 2px solid #e5e7eb;
}

.pricing-table thead th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #38BDF8;
  white-space: nowrap;
  border: none;
  background: transparent;
}

.pricing-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
  background: #f8fafc;
}

.pricing-table tbody td {
  padding: 1.25rem 1.5rem;
  color: #4b5563;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  vertical-align: middle;
  line-height: 1.5;
  border: none;
}

.pricing-table tbody td:first-child {
  color: #1e293b;
  font-weight: 500;
}

.pricing-table tbody td:first-child strong {
  color: #1e293b;
  font-weight: 600;
}

.pricing-table tbody td:last-child {
  color: #059669;
  font-weight: 600;
  font-size: 1rem;
}

.pricing-table tbody td:last-child strong {
  color: #059669;
}

.comparison-note {
  text-align: center;
  color: #6b7280;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

.comparison-note a {
  color: #38BDF8;
  font-weight: 600;
  text-decoration: none;
}

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

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

.design-process-section {
  background: linear-gradient(135deg, #0B1120 0%, #1E293B 100%);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
}

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

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

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

.process-step-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-4px);
}

.process-step-item .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FACC15 0%, #F59E0B 100%);
  color: #0B1120;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(250, 204, 21, 0.3);
}

.process-step-item strong {
  display: block;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step-item p {
  color: #9CA3AF;
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   DELIVERABLES & REVISIONS 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;
  font-family: 'Roboto', sans-serif;
  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 {
  font-family: 'Roboto', sans-serif;
  color: #cbd5e1;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   GRAPHICS SERVICES GRID
   ========================================================================== */

.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-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.graphics-price {
  display: inline-block;
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
  font-family: 'Poppins', sans-serif;
  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 {
  font-family: 'Roboto', sans-serif;
  color: #f59e0b;
  font-size: 0.9rem;
  margin: 0;
}

/* ==========================================================================
   WEB DEVELOPMENT CARDS
   ========================================================================== */

.webdev-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
}

.webdev-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.webdev-card.featured {
  border-color: #22d3ee;
  box-shadow: 0 4px 16px rgba(34, 211, 238, 0.1);
}

.webdev-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  border-radius: 50px;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.webdev-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.webdev-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 0.75rem;
}

.webdev-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.webdev-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.webdev-features span {
  padding: 0.375rem 0.75rem;
  background: #f3f4f6;
  color: #4b5563;
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  border-radius: 20px;
}

.webdev-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #059669;
}

/* ==========================================================================
   WEBSITE COMPARISON TABLE
   ========================================================================== */

.webdev-comparison {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.webdev-comparison h4 {
  color: #003366;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table thead tr {
  background: #ffffff;
  border-bottom: 2px solid #e5e7eb;
}

.comparison-table thead th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #38BDF8;
  white-space: nowrap;
  border: none;
  background: transparent;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: #f8fafc;
}

.comparison-table tbody tr:last-child {
  background: #f0fdf4;
}

.comparison-table tbody td {
  padding: 1.25rem 1.5rem;
  color: #4b5563;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  vertical-align: middle;
  line-height: 1.5;
  border: none;
}

.comparison-table tbody td:first-child {
  color: #1e293b;
  font-weight: 500;
}

.comparison-table tbody td:first-child strong {
  color: #1e293b;
  font-weight: 600;
}

.comparison-table tbody tr:last-child td {
  font-weight: 600;
  color: #059669;
  font-size: 1rem;
}

.comparison-table tbody tr:last-child td strong {
  color: #059669;
}

/* ==========================================================================
   DEPOSIT BANNER
   ========================================================================== */

.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 {
  font-family: 'Roboto', sans-serif;
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   CLIENT RESPONSIBILITIES
   ========================================================================== */

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

.responsibilities-box h4 {
  color: #0B1120;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

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

.responsibility-item {
  padding: 1.75rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.responsibility-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.responsibility-item strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.responsibility-item.client-side strong {
  color: #64748b;
}

.responsibility-item.our-side strong {
  color: #0ea5e9;
}

.responsibility-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.responsibility-item li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #374151;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

.responsibility-item li:last-child {
  padding-bottom: 0;
}

.responsibility-item.client-side li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1.5px solid #94a3b8;
  background: transparent;
}

.responsibility-item.our-side li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0ea5e9;
}

/* ==========================================================================
   CONTENT ADD-ON BANNER
   ========================================================================== */

.addon-banner {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.addon-banner:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

.addon-content {
  flex: 1;
}

.addon-content h4 {
  color: #0B1120;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem 0;
  padding: 0;
  border: none;
  text-align: left;
}

.addon-content p {
  color: #64748b;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.addon-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: #0B1120;
  color: #ffffff;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.addon-cta:hover {
  background: #1E293B;
  color: #ffffff;
}

.webdev-cta-center {
  text-align: center;
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

/* ==========================================================================
   TRAINING CARDS (DARK)
   ========================================================================== */

.training-highlight {
  text-align: center;
  margin-bottom: 2rem;
}

.training-location {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 50px;
}

.location-icon {
  font-size: 1.25rem;
}

.location-text {
  font-family: 'Roboto', sans-serif;
  color: #9CA3AF;
  font-size: 0.9rem;
}

.location-text strong {
  color: #22d3ee;
}

.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-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #22d3ee;
  font-weight: 600;
  margin-bottom: 1rem;
}

.training-card-dark > p {
  font-family: 'Roboto', sans-serif;
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.training-features-dark li {
  color: #cbd5e1;
  font-family: 'Roboto', sans-serif;
  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;
  font-family: 'Poppins', sans-serif;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.training-cta-dark {
  display: inline-block;
  color: #22d3ee;
  font-family: 'Poppins', sans-serif;
  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;
  font-family: 'Roboto', sans-serif;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.training-pricing-info > p {
  font-family: 'Roboto', sans-serif;
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
}

/* ==========================================================================
   WHY PYSTATR+ GRID - Futuristic 2x2 Layout
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.why-card {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 17, 32, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Glow effect on hover */
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #22d3ee, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(34, 211, 238, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.why-card:hover::after {
  opacity: 1;
}

.why-icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, rgba(34, 211, 238, 0.05) 100%);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.25) 0%, rgba(34, 211, 238, 0.1) 100%);
  border-color: rgba(34, 211, 238, 0.4);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
}

.why-card h3 {
  position: relative;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.why-card:hover h3 {
  color: #22d3ee;
}

.why-card p {
  position: relative;
  z-index: 1;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

.why-card:hover p {
  color: #cbd5e1;
}

/* ==========================================================================
   PAYMENT SECTION
   ========================================================================== */

.payment-section {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.payment-method {
  padding: 0.5rem 1rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 8px;
  color: #22d3ee;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
}

.payment-note {
  font-family: 'Roboto', sans-serif;
  color: #9CA3AF;
  font-size: 0.85rem;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.services-cta-section {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0B1120 0%, #1E293B 50%, #0B1120 100%);
  overflow: hidden;
  text-align: center;
}

.services-cta-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.services-cta-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.services-cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.services-cta-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #9CA3AF;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.services-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(34, 211, 238, 0.3);
  color: white;
}

.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

/* ==========================================================================
   RESPONSIVE - TABLET
   ========================================================================== */

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

/* ==========================================================================
   RESPONSIVE - MOBILE
   ========================================================================== */

@media (max-width: 767px) {
  .services-hero {
    padding-top: 160px !important;
    padding-bottom: 3rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  .services-hero-title {
    font-size: 2rem;
  }
  
  .services-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-divider {
    width: 40px;
    height: 1px;
  }
  
  .services-section-dark,
  .services-section-dark-alt,
  .services-section-light {
    padding: 3rem 1.25rem;
  }
  
  .services-grid-2,
  .services-grid-3,
  .services-grid-3-light {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-card {
    padding: 2rem 1.5rem;
  }
  
  .graphics-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .process-steps-grid {
    grid-template-columns: 1fr;
  }
  
  .responsibilities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .addon-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .addon-content h4 {
    text-align: center;
  }
  
  .addon-cta {
    width: 100%;
    justify-content: center;
  }
  
  .deposit-banner,
  .satisfaction-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .services-cta-section {
    padding: 4rem 1.25rem;
  }
  
  .services-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button-primary,
  .cta-button-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .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: 12px;
  }
}

/* ==========================================================================
   HIDE COMPLEX TABLES ON MOBILE (under 768px)
   ========================================================================== */

@media (max-width: 767px) {
  .logo-pricing-section,
  .webdev-comparison,
  .responsibilities-box {
    display: none !important;
  }
}
