/* ============================================================
   Park Head Global IT Solutions — Design System
   Palette: deep royal navy + warm salmon accent + warm off-white
   Type: Sora (display) / Inter (body)
   ============================================================ */

:root {
  --navy:        #15298E;
  --navy-deep:   #0C1850;
  --navy-ink:    #080F33;
  --salmon:      #03A9F1;
  --salmon-deep: #0288D1;
  --cyan:        #00ADEF;
  --bg:          #FFFFFF;
  --bg-alt:      #F5F4F1;
  --text:        #101426;
  --muted:       #5C6070;
  --line:        #E4E3DE;
  --line-dark:   rgba(255,255,255,.14);
  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;
  --ease: cubic-bezier(.22,.61,.21,1);
  --header-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

::selection { background: var(--salmon); color: var(--navy-ink); }

/* ---------- Layout helpers ---------- */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy-deep); color: #fff; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.display-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.display-lg { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.display-md { font-size: clamp(1.6rem, 3vw, 2.3rem); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.75;
  color: var(--muted);
  font-weight: 400;
}
.section--navy .lead { color: rgba(255,255,255,.72); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--salmon-deep);
}
.section--navy .eyebrow { color: var(--salmon); }

.accent { color: var(--salmon-deep); }
.section--navy .accent, .hero .accent { color: var(--salmon); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 38px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  position: relative;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn--solid {
  background: var(--navy);
  color: #fff;
}
.btn--solid:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-2px);
}

.btn--outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn--salmon {
  background: var(--salmon);
  border-color: var(--salmon);
  color: var(--navy-ink);
}
.btn--salmon:hover {
  background: var(--salmon-deep);
  border-color: var(--salmon-deep);
  transform: translateY(-2px);
}

.btn--light {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.btn--light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy-ink);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid transparent;
  z-index: 1100;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(8,15,51,.08);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img { height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 38px; }
.main-nav a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  transition: color .25s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--salmon-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--navy); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: 13px 28px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--navy-ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 960px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding-top: var(--header-h);
    background: var(--navy-deep);
    transform: translateY(-100%);
    transition: transform .45s var(--ease);
    z-index: 1050;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { color: #fff; font-size: 16px; }
  .main-nav a:hover, .main-nav a.is-active { color: var(--salmon); }
  .nav-toggle.is-open span { background: #fff; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(118deg, var(--navy-ink) 0%, var(--navy-deep) 46%, var(--navy) 100%);
  color: #fff;
  overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 90px;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: .55;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 78% 30%, rgba(0,173,239,.14), transparent 65%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--salmon); }
.hero-copy h1 { margin-bottom: 26px; }
.hero-copy .lead { color: rgba(255,255,255,.75); max-width: 560px; margin-bottom: 42px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative;
  border: 1px solid var(--line-dark);
  padding: 14px;
  background: rgba(255,255,255,.04);
}
.hero-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: saturate(.92);
}
.hero-media .frame::before {
  content: "";
  position: absolute;
  top: -14px; right: -14px;
  width: 70px; height: 70px;
  border-top: 3px solid var(--salmon);
  border-right: 3px solid var(--salmon);
}
.hero-badge {
  position: absolute;
  left: -34px; bottom: 40px;
  background: #fff;
  color: var(--navy-ink);
  padding: 22px 26px;
  max-width: 250px;
  box-shadow: 0 24px 60px rgba(8,15,51,.35);
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 6px;
}
.hero-badge span { font-size: 13px; color: var(--muted); line-height: 1.55; display: block; }

.hero-meta {
  margin-top: 74px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 54px;
}
.hero-meta div {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-meta i {
  width: 7px; height: 7px;
  background: var(--salmon);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-media img { height: 340px; }
  .hero-badge { left: 12px; bottom: -24px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(118deg, var(--navy-ink), var(--navy-deep) 55%, var(--navy));
  color: #fff;
  padding: calc(var(--header-h) + clamp(70px, 9vw, 120px)) 0 clamp(64px, 8vw, 104px);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 780px; margin-bottom: 20px; }
.page-hero .lead { color: rgba(255,255,255,.72); max-width: 640px; }
.breadcrumb {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 26px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.breadcrumb a:hover { color: var(--salmon); }
.breadcrumb span { color: var(--salmon); }

/* ---------- Statement / approach ---------- */
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.statement-grid h2 { margin-bottom: 0; }
.statement-side p + p { margin-top: 20px; }
.statement-side .btn { margin-top: 34px; }

@media (max-width: 860px) {
  .statement-grid { grid-template-columns: 1fr; }
}

/* ---------- Media with offset frame ---------- */
.media-frame { position: relative; }
.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 2px solid var(--salmon);
  z-index: 1;
}
.media-frame--flip::after { inset: 22px 22px -22px -22px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}
.split .copy h2 { margin-bottom: 24px; }
.split .copy p + p { margin-top: 18px; }
.split .copy .btn { margin-top: 34px; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split .media-frame { order: -1; }
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
.service-card {
  background: #fff;
  padding: 44px 36px 40px;
  position: relative;
  transition: background .4s var(--ease);
  overflow: hidden;
}
.service-card .num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--salmon-deep);
  display: block;
  margin-bottom: 26px;
  transition: color .4s var(--ease);
}
.service-card .icon {
  width: 46px; height: 46px;
  margin-bottom: 24px;
  color: var(--navy);
  transition: color .4s var(--ease), transform .4s var(--ease);
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  transition: color .4s var(--ease);
}
.service-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  transition: color .4s var(--ease);
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color .4s var(--ease);
}
.service-card .card-link svg { transition: transform .35s var(--ease); }
.service-card:hover { background: var(--navy-deep); }
.service-card:hover .num { color: var(--salmon); }
.service-card:hover .icon { color: var(--salmon); transform: translateY(-4px); }
.service-card:hover h3 { color: #fff; }
.service-card:hover p { color: rgba(255,255,255,.68); }
.service-card:hover .card-link { color: var(--salmon); }
.service-card:hover .card-link svg { transform: translateX(5px); }

@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Values band ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  margin-top: 60px;
}
.value-item {
  border-top: 2px solid var(--line-dark);
  padding-top: 28px;
  position: relative;
  transition: border-color .35s var(--ease);
}
.value-item::before {
  content: "";
  position: absolute;
  top: -2px; left: 0;
  width: 44px; height: 2px;
  background: var(--salmon);
}
.value-item h3 { font-size: 19px; margin-bottom: 12px; color: #fff; }
.value-item p { font-size: 14.5px; color: rgba(255,255,255,.62); line-height: 1.7; }
@media (max-width: 960px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  counter-reset: step;
}
.process-step {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-dark);
  padding: 40px 34px;
  position: relative;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.process-step:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); }
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--salmon);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.process-step h3 { color: #fff; font-size: 20px; margin-bottom: 12px; }
.process-step p { font-size: 14.5px; color: rgba(255,255,255,.65); }
@media (max-width: 860px) { .process { grid-template-columns: 1fr; } }

/* ---------- Checklist ---------- */
.check-list { margin-top: 28px; display: grid; gap: 16px; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--text);
}
.check-list svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--salmon-deep);
  margin-top: 2px;
}
.section--navy .check-list li { color: rgba(255,255,255,.85); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--salmon);
  color: var(--navy-ink);
  padding: clamp(64px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  border: 2px solid rgba(8,15,51,.12);
  border-radius: 50%;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  border: 2px solid rgba(8,15,51,.1);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-inner h2 { max-width: 640px; }
.cta-inner .btn {
  border-color: var(--navy-ink);
  color: var(--navy-ink);
}
.cta-inner .btn:hover { background: var(--navy-ink); color: #fff; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(44px, 6vw, 90px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(36px, 4vw, 56px);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.contact-info-card h2 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.info-row { display: flex; gap: 20px; align-items: flex-start; }
.info-row .info-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--salmon);
}
.info-row h3 {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 600;
}
.info-row p { font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.65; }
.info-row a { transition: color .25s; }
.info-row a:hover { color: var(--salmon); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(36px, 4vw, 56px);
}
.form-card h2 { margin-bottom: 8px; }
.form-card > p { color: var(--muted); margin-bottom: 34px; font-size: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 22px; display: flex; flex-direction: column; gap: 9px; }
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  color: var(--text);
  transition: border-color .25s var(--ease), background .25s var(--ease);
  width: 100%;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23101426' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
}
.field input.is-error, .field textarea.is-error, .field select.is-error {
  border-color: #D6482F;
  background: #FDF3F1;
}
.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.form-success {
  display: none;
  margin-top: 22px;
  padding: 18px 22px;
  background: #EEF7EF;
  border: 1px solid #BFE3C4;
  color: #226B32;
  font-size: 14.5px;
}
.form-success.is-visible { display: block; }

/* ---------- Visit band (contact) ---------- */
.visit-band {
  background: var(--navy-ink);
  color: #fff;
  padding: clamp(64px, 8vw, 110px) 0;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.visit-copy .eyebrow { color: var(--salmon); }
.visit-copy h2 { color: #fff; margin-bottom: 18px; }
.visit-copy p { color: rgba(255,255,255,.7); margin-bottom: 32px; line-height: 1.8; }
.visit-map {
  border: 1px solid var(--line-dark);
  padding: 12px;
  background: rgba(255,255,255,.04);
}
.visit-map svg { width: 100%; height: auto; display: block; }
@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-ink);
  color: rgba(255,255,255,.66);
  padding: clamp(60px, 7vw, 96px) 0 0;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 44px; margin-bottom: 22px; }
.footer-brand p { line-height: 1.75; max-width: 300px; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-col ul { display: grid; gap: 13px; }
.footer-col a { transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--salmon); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.6; }
.footer-contact svg { width: 17px; height: 17px; color: var(--salmon); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.42);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--salmon); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
.reveal-d4 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Section head ---------- */
.section-head { max-width: 720px; }
.section-head h2 { margin-bottom: 20px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- Service detail rows (services page) ---------- */
.service-detail {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-row .row-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--salmon-deep);
  padding-top: 8px;
}
.service-row .row-title { display: flex; flex-direction: column; gap: 18px; }
.service-row .row-title .icon {
  width: 44px; height: 44px;
  color: var(--navy);
}
.service-row h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
.service-row .row-copy p { color: var(--muted); font-size: 15.5px; }
.service-row .row-copy p + p { margin-top: 14px; }
.service-row .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.service-row .tag-list span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 8px 14px;
  background: var(--bg-alt);
}
@media (max-width: 860px) {
  .service-row { grid-template-columns: 1fr; gap: 20px; }
  .service-row .row-num { padding-top: 0; }
}

/* ---------- ServiceNow feature ---------- */
.servicenow-feature {
  background: linear-gradient(118deg, var(--navy-ink), var(--navy-deep) 60%, var(--navy));
  color: #fff;
}
.servicenow-feature .lead { color: rgba(255,255,255,.72); }
