/* Service Detail Pages — Agency Style */
.service-hero {
  padding: 160px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, var(--beige) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.service-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-hero-text .section-tag {
  color: var(--sage-dark);
}

.service-hero-text .section-tag::before {
  background: var(--sage);
}

.service-hero-text h1 {
  font-size: 3rem;
  font-weight: 400;
  margin: 16px 0 20px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.service-hero-text > p {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 32px;
}

.service-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Sections */
.service-section {
  padding: 100px 0;
}

.service-section.alt {
  background: var(--ivory);
}

.service-section h2 {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-section > .container > .section-desc {
  font-size: 1rem;
  color: var(--stone);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}

.feature-icon {
  font-size: 1.6rem;
  color: var(--sage);
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  color: var(--gold);
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
}

/* Process */
.process-steps {
  display: grid;
  gap: 20px;
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  align-items: start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
}

/* Tools */
.tools-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tools-badges span {
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--beige);
  color: var(--sage-dark);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border-light);
}

/* Related */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.related-card:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.related-card i {
  font-size: 1.2rem;
  color: var(--sage);
}

.related-card span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* CTA */
.service-cta {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  text-align: center;
  color: var(--white);
}

.service-cta h2 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 12px;
}

.service-cta p {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-hero .container {
    grid-template-columns: 1fr;
  }
  .service-hero-text { order: 2; text-align: center; }
  .service-hero-image { order: 1; }
  .service-hero-text h1 { font-size: 2.2rem; }
  .service-hero-text > p { max-width: 600px; margin-left: auto; margin-right: auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .service-hero { padding: 140px 0 60px; }
  .service-hero-text h1 { font-size: 1.8rem; }
  .service-hero-image img { height: 260px; }
  .service-section { padding: 70px 0; }
  .service-section h2 { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; gap: 12px; }
  .service-cta { padding: 40px 24px; }
  .service-cta h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr 1fr; }
  .tools-badges { gap: 6px; }
  .tools-badges span { font-size: 0.75rem; padding: 6px 14px; }
}
