/* ── Featured Service ── */
.service-featured {
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
}
.featured-flag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--econ-light);
  margin-bottom: 20px;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.featured-text h2 {
  margin-bottom: 20px;
  max-width: 24ch;
}
.featured-text > p {
  color: #4a4458;
  line-height: 1.78;
  margin-bottom: 16px;
  font-size: 1.125rem;
}
.featured-includes {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.featured-includes h4 {
  font-size: 1.0625rem;
  margin-bottom: 14px;
}
.featured-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.featured-includes li {
  font-size: 1.0625rem;
  color: #5b5566;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.featured-includes li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--socio);
  font-size: 0.9375rem;
}

.featured-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}
.sidebar-block {
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--tech);
}
.sidebar-label {
  display: block;
  font-size: 0.8125rem;
  color: #8b8399;
  margin-bottom: 6px;
}
.sidebar-block p {
  font-size: 0.98rem;
  color: #6b6280;
  line-height: 1.6;
}

/* ── Supporting Services ── */
.services-supporting {
  padding: var(--section-pad);
}
.services-supporting > .container > h2 { margin-bottom: 12px; }
.supporting-intro {
  color: #6b6280;
  line-height: 1.78;
  margin-bottom: 48px;
  max-width: 52ch;
  font-size: 1.125rem;
}

.service-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 36px 28px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  align-items: start;
}
.service-item:first-child { margin-top: 0; }
.service-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #c4b5fd;
  padding-top: 2px;
}
.service-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.service-body p {
  font-size: 1.08rem;
  color: #5b5566;
  line-height: 1.75;
  margin-bottom: 14px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags span {
  font-size: 0.8125rem;
  color: #8b8399;
}
.service-tags span::after { content: ' \00b7'; }
.service-tags span:last-child::after { content: ''; }

/* ── CTA ── */
.services-cta {
  padding: 140px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(233, 78, 119, 0.08), transparent 55%),
    var(--mist);
}
.services-cta h2 { margin-bottom: 16px; }
.services-cta p {
  color: #6b6280;
  line-height: 1.78;
  margin: 0 auto 36px;
  max-width: 48ch;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .service-featured { padding: var(--section-pad-mobile); }
  .services-supporting { padding: var(--section-pad-mobile); }
  .services-cta { padding: 80px 20px; }
  .featured-grid { grid-template-columns: 1fr; gap: 32px; }
  .featured-sidebar { position: static; }
  .service-item { grid-template-columns: 1fr; gap: 8px; padding: 28px 22px; }
  .service-num { font-size: 1.1rem; color: var(--socio); }
}
