/* =========================================================
   OPMarketing — service pages v2
   Compact editorial layout: tight type, list rows, no wasted space
   ========================================================= */

/* ---- HERO ---- */
.svc-hero {
  padding: 110px var(--pad) 56px;
  border-bottom: 1px solid var(--line);
}
.svc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 860px) {
  .svc-hero__inner { grid-template-columns: 1fr; gap: 32px; }
}

.svc-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.svc-hero__label::before {
  content: "";
  display: block;
  width: 22px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.svc-hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin: 0;
}
.svc-hero__title em { font-style: normal; color: var(--accent); }

.svc-hero__right { padding-top: 42px; }
@media (max-width: 860px) { .svc-hero__right { padding-top: 0; } }

.svc-hero__lede {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 54ch;
}
.svc-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-hero__pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--line-strong);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ---- SECTIONS ---- */
.svc-section {
  padding: clamp(44px, 5.5vw, 72px) var(--pad);
  border-top: 1px solid var(--line);
}
.svc-section--alt { background: var(--bg-2); }

.svc-section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
}
.svc-h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.06;
  letter-spacing: -.025em;
  text-transform: uppercase;
  margin: 0;
}
.svc-h2 em { font-style: normal; color: var(--accent); }

/* ---- INCLUDED LIST (table rows) ---- */
.svc-list { border-top: 1px solid var(--line); }

.svc-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 40px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 860px) {
  .svc-item { grid-template-columns: 1fr; gap: 10px; }
}
.svc-item__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.svc-item__num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: .12em;
}
.svc-item__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.svc-item__right { display: grid; gap: 12px; }
.svc-item__copy {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
  max-width: 72ch;
}
.svc-item__bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}
.svc-item__bullets li {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-3);
  position: relative;
  padding-left: 11px;
}
.svc-item__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* ---- PROCESS TIMELINE ---- */
.svc-timeline { border-top: 1px solid var(--line); }
.svc-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.svc-step__num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--accent);
  padding-top: 3px;
}
.svc-step__body { display: grid; gap: 6px; }
.svc-step__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
}
.svc-step__copy {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
  max-width: 72ch;
}

/* ---- RESULTS METRICS ---- */
.svc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 36px;
}
@media (max-width: 640px) { .svc-metrics { grid-template-columns: 1fr; } }

.svc-metric {
  padding: 28px 28px;
  background: var(--surface);
  display: grid;
  gap: 6px;
  align-content: start;
}
.svc-metric__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--accent);
}
.svc-metric__label {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 28ch;
}

/* ---- ALSO (related services) ---- */
.svc-also {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 36px;
}
@media (max-width: 640px) { .svc-also { grid-template-columns: 1fr; } }

.svc-also__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: var(--bg);
  transition: background .25s;
}
.svc-also__link:hover { background: var(--surface); }
.svc-also__link:hover .svc-also__name { color: var(--accent); }
.svc-also__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  transition: color .25s;
}
.svc-also__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}
.svc-also__link svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; }

/* ---- CTA ---- */
.svc-cta {
  padding: clamp(44px, 5.5vw, 72px) var(--pad);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(50% 100% at 0% 60%, rgba(203,152,71,.07), transparent 70%),
    var(--bg);
}
.svc-cta__inner {
  max-width: 680px;
  display: grid;
  gap: 16px;
}
.svc-cta__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 48px);
  line-height: 1.02;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin: 8px 0 0;
}
.svc-cta__title em { font-style: normal; color: var(--accent); }
.svc-cta__sub {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
  max-width: 52ch;
}
.svc-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 13px 26px;
  background: var(--accent);
  color: #13100c;
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%);
  transition: background .3s;
  align-self: start;
}
.svc-cta__btn:hover { background: var(--accent-2); }
.svc-cta__btn .arrow { width: 13px; height: 13px; display: inline-flex; transition: transform .3s var(--ease-out); }
.svc-cta__btn:hover .arrow { transform: translateX(4px); }
