/* ===========================
   Triple C — Services Pages
   =========================== */

/* ── Services overview grid ── */
.services-page {
  background: var(--bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.services-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Service card (overview) ── */
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, background 0.25s;
}
.svc-card:hover {
  border-color: rgba(127,199,183,0.35);
  background: var(--surface-2);
}
.svc-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--teal-glow);
  border: 1px solid rgba(127,199,183,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.svc-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.svc-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.svc-card p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
  flex: 1;
}
.svc-card__footer {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.svc-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.svc-card:hover .svc-card__link { color: #fff; }

/* ── Growth system section ── */
.services-system {
  background: var(--bg);
  padding: 80px 0 120px;
}
.services-system__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.services-system__text .section-tag { display: block; margin-bottom: 20px; }
.services-system__text h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.services-system__text p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.8;
  margin-bottom: 16px;
}
.services-system__text .btn { margin-top: 8px; }
.services-system__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.services-system__item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.services-system__item:first-child { padding-top: 0; }
.services-system__item:last-child { border-bottom: none; }
.services-system__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  flex-shrink: 0;
  padding-top: 2px;
}
.services-system__item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.services-system__item p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
  margin: 0;
}

/* ── Individual service page ── */
.svc-hero {
  padding: calc(var(--nav-h) + 60px) 0 56px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.svc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.svc-hero__tag {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.svc-hero__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.svc-hero__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.svc-hero__sub {
  font-size: 18px;
  color: var(--text-sec);
  line-height: 1.75;
  max-width: 680px;
}

/* ── Service body ── */
.svc-body {
  background: var(--bg);
  padding: 80px 0 120px;
}
.svc-body__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Service sidebar ── */
.svc-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-sidebar__box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.svc-sidebar__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.svc-sidebar__facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-sidebar__facts li {
  font-size: 13px;
  color: var(--text-sec);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.svc-sidebar__facts li::before {
  content: '→';
  color: var(--teal);
  font-weight: 600;
  flex-shrink: 0;
  font-size: 12px;
}
.svc-sidebar__cta {
  background: linear-gradient(135deg, rgba(127,199,183,0.08), rgba(249,115,22,0.06));
  border: 1px solid rgba(127,199,183,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
}
.svc-sidebar__cta p {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 14px;
}
.svc-sidebar__cta .btn {
  width: 100%;
  text-align: center;
  display: block;
}

/* ── Service content ── */
.svc-content { max-width: 720px; }
.svc-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 56px 0 16px;
  line-height: 1.2;
}
.svc-content h2:first-child { margin-top: 0; }
.svc-content h3 {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  line-height: 1.3;
}
.svc-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 20px;
}
.svc-content strong { color: rgba(255,255,255,0.95); font-weight: 600; }
.svc-content ul, .svc-content ol {
  margin: 0 0 24px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-content li {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}
.svc-content li strong { color: rgba(255,255,255,0.95); }
.svc-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* process steps */
.svc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
}
.svc-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.svc-step:last-child { border-bottom: none; }
.svc-step__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 24px;
}
.svc-step__title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.svc-step__body {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
  margin: 0;
}

/* callout */
.svc-callout {
  background: rgba(127,199,183,0.06);
  border: 1px solid rgba(127,199,183,0.18);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.svc-callout p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

/* deliverables */
.svc-deliverables {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 40px 0;
}
.svc-deliverables__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.svc-deliverables ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-deliverables li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}
.svc-deliverables li::before {
  content: '→';
  color: var(--teal);
  flex-shrink: 0;
  font-weight: 600;
}

/* cta box */
.svc-cta-box {
  background: linear-gradient(135deg, rgba(127,199,183,0.08), rgba(249,115,22,0.06));
  border: 1px solid rgba(127,199,183,0.2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 56px 0 0;
}
.svc-cta-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.svc-cta-box p {
  font-size: 15px;
  color: var(--text-sec);
  margin-bottom: 24px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-page__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .services-system__inner { grid-template-columns: 1fr; gap: 48px; }
  .svc-body__inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-sidebar { position: static; }
}
@media (max-width: 640px) {
  .services-page__grid { grid-template-columns: 1fr; }
  .svc-cta-box { padding: 28px 24px; }
}
