/* ===== GROWTH SERVICES PAGE — Redesign 2026 ===== */

.gs-hero-content { position: relative; z-index: 1; max-width: 860px; }
.gs-hero-content h1 {
  font-size: var(--fs-h1); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.03em;
  color: var(--ink); margin-top: var(--space-sm);
}

/* Growth cards grid */
.gs-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.gs-cards-grid {
  display: grid; gap: var(--grid-gap); margin-top: var(--heading-gap);
}
@media (min-width: 768px) { .gs-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .gs-cards-grid { grid-template-columns: repeat(3, 1fr); } }

.gs-card {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms;
  box-shadow: var(--shadow-sm);
}
.gs-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91,71,224,0.2);
}
.gs-card-thumb {
  height: 200px; overflow: hidden;
  background: var(--surface-2);
  position: relative;
}
.gs-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; position: absolute; inset: 0;
  transition: transform 400ms var(--ease);
}
.gs-card:hover .gs-card-thumb img { transform: scale(1.05); }
.gs-card-thumb-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; background: var(--primary-light);
}
.gs-card-body { padding: var(--card-pad); flex: 1; display: flex; flex-direction: column; }
.gs-card-tag {
  display: inline-flex; align-items: center;
  padding: 5px 11px; border-radius: 100px;
  background: var(--primary-light); color: var(--primary);
  font-size: 11px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: var(--space-sm); width: fit-content;
}
.gs-card-body h3 {
  font-size: 19px; font-weight: 800;
  letter-spacing: -0.015em; margin-bottom: var(--space-sm);
}
.gs-card-body p {
  font-size: 14px; color: var(--ink-muted);
  line-height: 1.72; flex: 1; margin-bottom: var(--space-md);
}
.gs-card-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--primary); font-size: 13.5px; font-weight: 800;
  transition: gap 180ms; margin-top: auto;
}
.gs-card-link:hover { gap: var(--space-sm); }

/* Featured full-width strip */
.gs-featured-strip {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  margin-top: var(--space-md);
  box-shadow: var(--shadow-md);
}
@media (min-width: 1024px) { .gs-featured-strip { grid-template-columns: 1fr 400px; } }
.gs-featured-body {
  padding: 48px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--surface) 100%);
}
.gs-featured-body h3 {
  font-size: clamp(22px, 2.2vw, 30px); font-weight: 800;
  letter-spacing: -0.025em; margin: var(--space-sm) 0 14px;
}
.gs-featured-body p {
  font-size: 15px; color: var(--ink-muted); line-height: 1.75; margin-bottom: var(--space-md);
}
.gs-featured-media {
  background: var(--ink); min-height: 280px;
  position: relative; overflow: hidden;
}
.gs-featured-media img {
  width: 100%; height: 100%;
  object-fit: cover; position: absolute; inset: 0; opacity: 0.6;
}

/* CRO-style results bar */
@media (min-width: 1024px) {  }
.gs-results-copy h2 { color: #fff; }
.gs-results-copy .eyebrow { color: var(--accent); }
.gs-results-copy .eyebrow::before { background: var(--accent); }
.gs-results-copy p { color: rgba(255,255,255,0.62); margin-top: var(--space-sm); font-size: 16px; line-height: 1.75; }
/* FAQ */
.gs-faq-list details[open] > summary .chevron-icon { transform: rotate(180deg); background: var(--primary-light); }
