.cs-hero--cshub .cs-hero-bg {
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cs-hero--cshub .cs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}

.cs-hero--cshub .cs-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1rem 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.cs-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin: .5rem 0 1rem;
  line-height: 1.15;
}

.cs-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cs-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cs-kicker {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-primary, #f5a623);
  background: rgba(245,166,35,.12);
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: .5rem;
}

/* Service Cards */
.cs-cards-grid {
  display: grid;
  gap: 2rem;
}

.cs-cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .cs-cards-grid--2 {
    grid-template-columns: 1fr;
  }
}

.cs-card--service {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.cs-card--service:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
}

.cs-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: #1a1a1a;
}

.cs-card-desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cs-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.cs-feature-list li {
  font-size: .9rem;
  color: #444;
  padding-left: 1.5rem;
  position: relative;
}

.cs-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-primary, #f5a623);
  border-radius: 50%;
}

@media (max-width: 480px) {
  .cs-feature-list {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.cs-section {
  padding: 5rem 0;
}

.cs-section--alt {
  background: #f7f7f9;
}

.cs-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

/* Steps */
.cs-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .cs-steps {
    grid-template-columns: 1fr;
  }
}

.cs-step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.cs-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary, #f5a623);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cs-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #1a1a1a;
}

.cs-step-desc {
  color: #555;
  line-height: 1.6;
  font-size: .95rem;
}

/* CTA Section */
.cs-cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-align: center;
  padding: 5rem 1rem;
}

.cs-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cs-cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

/* Buttons */
.cs-btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: .5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.cs-btn--primary {
  background: var(--color-primary, #f5a623);
  color: #fff;
}

.cs-btn--primary:hover {
  background: #e6951a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245,166,35,.35);
}

.cs-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.cs-btn--secondary:hover {
  background: #fff;
  color: #1a1a1a;
}

.cs-btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}
