/* Shared Inner Pages Typography & Spacing */
.section-padding { padding: 80px 0; position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.75rem; color: #1e293b; margin-bottom: 16px; font-weight: 700; }
.section-header p { color: #64748b; font-size: 1.125rem; max-width: 800px; margin: 0 auto; line-height: 1.6; }

/* Grids */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }

/* Hero Page Standard */
.hero-page {
  position: relative; padding: 160px 20px 100px; min-height: 45vh;
  display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
  background-color: #1a2433;
  background-size: cover; background-position: center; z-index: 0;
}
.hero-page h1 { color: #ffffff; }
.hero-page::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,18,32,0.65), rgba(11,18,32,0.85)); z-index: -1; }
.hero-badge { 
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 9999px; 
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); 
  font-size: 0.875rem; font-weight: 600; margin-bottom: 24px; letter-spacing: 0.5px; backdrop-filter: blur(4px); 
}

/* Premium Card Aesthetics (Glassmorphism inspired hover & Micro-animations) */
.content-card {
  background: #ffffff; border-radius: 16px; padding: 32px; box-sizing: border-box;
  border: 1px solid rgba(11, 18, 32, 0.04); box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
}
.content-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 25px 50px rgba(149, 193, 31, 0.15); 
}
.content-card svg {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.content-card:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.1));
}

.content-card h3 { font-size: 1.5rem; color: #0f172a; margin-bottom: 16px; font-weight: 600; line-height: 1.3; }
.content-card p { color: #475569; line-height: 1.6; margin-bottom: 0; font-size: 0.95rem; }
.content-card strong { color: #1e293b; font-weight: 600; }

/* Cards specific */
.stat-card { text-align: center; background: linear-gradient(145deg, #ffffff, #f8fafc); }
.stat-card h3 { font-size: 1.5rem; color: #95C11F; margin-bottom: 8px; font-weight: 800; line-height: 1; }
.stat-card p { font-size: 1.125rem; font-weight: 500; color: #334155; }

.project-card { position: relative; overflow: hidden; }
.project-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: #95C11F; }
.project-card p { margin-bottom: 12px; font-size: 0.95rem; }
.project-card strong { color: #1e293b; }
.outcome-text { color: #7aa215 !important; font-weight: 500; margin-top: 20px !important; padding-top: 16px; border-top: 1px solid #f1f5f9; }

/* Filter Buttons */
.filter-btn {
  padding: 10px 24px; border-radius: 999px; font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 1rem;
  border: 1px solid #e2e8f0; background: #fff; color: #475569; cursor: pointer; transition: all 0.2s ease;
}
.filter-btn:hover, .filter-btn.active { background: #1e293b; color: #fff; border-color: #1e293b; }

/* Custom Sections */
.capabilities-section { background-color: #fcfdfa; background-image: radial-gradient(at 0% 0%, rgba(149, 193, 31, 0.05) 0px, transparent 50%); }
.industries-section { padding: 60px 0; border-top: 1px solid rgba(0,0,0,0.05); }
.industries-text { font-size: 1.25rem; font-weight: 500; color: #475569; line-height: 1.8; margin-top: 20px; }

.final-cta { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: #fff; text-align: center; position: relative; z-index: 2; padding-top: 180px; }
.final-cta h2 { color: #fff; margin-bottom: 30px; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 9999px; font-weight: 600; font-family: 'Outfit', sans-serif; border: 2px solid rgba(255,255,255,0.3); color: #fff; text-decoration: none; transition: all 0.3s ease; }
.btn-outline:hover { background: #fff; color: #0f172a; border-color: #fff; }
.sla-text { margin-top: 16px; color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500; margin-left: 20px; }


/* MOBILE RESPONSIVENESS FIXES */
@media (max-width: 900px) {
  .hero-actions { display: flex !important; flex-direction: column !important; gap: 8px !important; margin-top: 14px !important; align-items: flex-start !important; width: 100% !important; }
  .hero-actions a { width: auto !important; max-width: 100% !important; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { font-size: clamp(0.8rem, 1.5vw, 1rem) !important; padding: clamp(8px, 1vw, 14px) clamp(14px, 2vw, 24px) !important; }
  .sla-text { font-size: clamp(0.75rem, 1.2vw, 0.9rem) !important; margin-top: 10px !important; }
}

@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr !important; gap: 24px !important; }
  .hero-content h1, .hero-page h1 { font-size: clamp(1.8rem, 6vw, 2.5rem) !important; line-height: 1.2 !important; margin-bottom: 16px !important; word-break: normal !important; overflow-wrap: normal !important; }
  .hero-content .hero-description { font-size: 1rem !important; line-height: 1.5 !important; }
  .hero, .hero-page { padding: 110px 20px 80px !important; box-sizing: border-box !important; min-height: auto !important;}
  .hero-content, .hero-badge, .hero-description, .hero-actions, .sla-text { margin-left: 0 !important; max-width: 100% !important; }
  .hero-actions a { width: 100% !important; justify-content: center !important; }
  .section-padding { padding: 50px 0 !important; }
  .section-header h2 { font-size: clamp(1.75rem, 6vw, 2.25rem) !important; margin-bottom: 12px !important; }
  .section-header p { font-size: clamp(0.95rem, 4vw, 1.125rem) !important; }
  .content-card { padding: 24px !important; }
  .content-card h3 { font-size: clamp(1.25rem, 5vw, 1.5rem) !important; margin-bottom: 12px !important; }
  .content-card p, .project-card p, .feature-card li { font-size: clamp(0.9rem, 3.5vw, 1rem) !important; line-height: 1.5 !important; }
  .final-cta h2 { font-size: clamp(1.5rem, 6vw, 2.25rem) !important; }
  .final-cta p { font-size: clamp(0.95rem, 4vw, 1.1rem) !important; }
}
