/* ============================================================
   CS GROWTH LAB — SERVICE PAGES + ABOUT PAGE PREMIUM CSS v2.0
   Premium hero, benefits, process, features, about sections
   ============================================================ */

/* ── INNER PAGE HERO (Services, About, Blog, etc.) ── */
.csgl-inner-hero {
  padding: 140px 0 80px !important;
  position: relative;
  overflow: hidden;
  background: var(--csgl-off-black, #0c0c0e) !important;
  text-align: center;
}
.csgl-inner-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at top, rgba(59,130,246,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.csgl-inner-hero > * { position: relative; z-index: 1; }

.csgl-inner-hero .csgl-label {
  margin-bottom: 24px;
}

.csgl-inner-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem) !important;
  font-weight: 900 !important;
  color: #fff !important;
  letter-spacing: -0.04em !important;
  line-height: 1.1 !important;
  max-width: 800px !important;
  margin: 0 auto 24px auto !important;
}

.csgl-inner-hero p {
  font-size: 18px !important;
  color: rgba(255,255,255,0.50) !important;
  max-width: 600px !important;
  margin: 0 auto 36px auto !important;
  line-height: 1.70 !important;
}

/* ── SERVICE PAGE BENEFITS GRID ── */
.csgl-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.csgl-benefit-card {
  padding: 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.csgl-benefit-card:hover {
  border-color: rgba(96,165,250,0.18);
  transform: translateY(-3px);
}

.csgl-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.csgl-benefit-icon svg {
  width: 20px;
  height: 20px;
  color: var(--csgl-blue-light, #60a5fa);
}
.csgl-benefit-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.01em !important;
}
.csgl-benefit-desc {
  font-size: 14px !important;
  color: rgba(255,255,255,0.45) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* ── FEATURES / DELIVERABLES LIST ── */
.csgl-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.csgl-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: border-color 0.3s ease;
}
.csgl-feature-item:hover {
  border-color: rgba(59,130,246,0.15);
}
.csgl-feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.csgl-feature-check svg {
  width: 10px;
  height: 10px;
  color: #22c55e;
}
.csgl-feature-text {
  font-size: 15px !important;
  color: rgba(255,255,255,0.70) !important;
  line-height: 1.50 !important;
  margin: 0 !important;
}

/* ── RELATED SERVICES STRIP ── */
.csgl-related-services {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.csgl-related-service-tag {
  padding: 8px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: all 0.25s ease;
}
.csgl-related-service-tag:hover {
  background: rgba(59,130,246,0.10);
  border-color: rgba(59,130,246,0.20);
  color: #fff;
}

/* ── ABOUT PAGE SPECIFIC ── */

/* Timeline */
.csgl-about-timeline {
  position: relative;
  padding-left: 48px;
}
.csgl-about-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--csgl-blue, #3b82f6), rgba(59,130,246,0.10));
}
.csgl-timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.csgl-timeline-item::before {
  content: '';
  position: absolute;
  left: -52px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--csgl-blue, #3b82f6);
  box-shadow: 0 0 12px rgba(59,130,246,0.50);
}
.csgl-timeline-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(59,130,246,0.70);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.csgl-timeline-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 8px !important;
}
.csgl-timeline-desc {
  font-size: 14px !important;
  color: rgba(255,255,255,0.45) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* Team Cards */
.csgl-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.csgl-team-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.csgl-team-card:hover {
  border-color: rgba(96,165,250,0.18);
  transform: translateY(-4px);
}
.csgl-team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59,130,246,0.30), rgba(99,102,241,0.20));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  border: 2px solid rgba(59,130,246,0.20);
  overflow: hidden;
}
.csgl-team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.csgl-team-name {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 4px !important;
}
.csgl-team-role {
  font-size: 13px !important;
  color: rgba(255,255,255,0.40) !important;
  font-weight: 400 !important;
  margin: 0 !important;
}

/* Core Values Grid */
.csgl-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
}
.csgl-value-item {
  padding: 32px 24px;
  background: var(--csgl-black, #080808);
  transition: background 0.3s ease;
}
.csgl-value-item:hover {
  background: rgba(59,130,246,0.03);
}
.csgl-value-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.csgl-value-title {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 8px !important;
}
.csgl-value-desc {
  font-size: 13px !important;
  color: rgba(255,255,255,0.40) !important;
  line-height: 1.60 !important;
  margin: 0 !important;
}

/* Certifications / Badges strip */
.csgl-certs-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
}
.csgl-cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.60;
  transition: opacity 0.3s ease;
}
.csgl-cert-badge:hover { opacity: 1; }
.csgl-cert-logo {
  max-height: 32px;
  width: auto;
  filter: grayscale(100%) brightness(1.5);
}
.csgl-cert-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── BLOG PAGE OVERRIDES ── */
.ast-article-post,
.ast-article-inner {
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1) !important;
}
.ast-article-post:hover,
.ast-article-inner:hover {
  border-color: rgba(96,165,250,0.15) !important;
  transform: translateY(-4px) !important;
}
.ast-article-post .entry-title a,
.ast-article-inner .entry-title a {
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  transition: color 0.2s ease !important;
}
.ast-article-post .entry-title a:hover {
  color: var(--csgl-blue-light, #60a5fa) !important;
}
.ast-article-post .entry-meta,
.ast-article-inner .entry-meta {
  color: rgba(255,255,255,0.35) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
}
.ast-article-post .entry-content p,
.ast-article-inner .entry-content p {
  color: rgba(255,255,255,0.55) !important;
}

/* Single post / page dark content area */
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
}
.entry-content p {
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.80 !important;
}
.entry-content a {
  color: var(--csgl-blue-light, #60a5fa) !important;
}
.entry-content blockquote {
  border-left: 3px solid var(--csgl-blue, #3b82f6) !important;
  background: rgba(59,130,246,0.05) !important;
  padding: 20px 24px !important;
  border-radius: 0 8px 8px 0 !important;
}

/* ── RESPONSIVE FIXES ── */
@media (max-width: 768px) {
  .csgl-inner-hero {
    padding: 120px 0 60px !important;
  }
  .csgl-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .csgl-benefits-grid {
    grid-template-columns: 1fr;
  }
}
