/* ═══════════════════════════════════════════════════
   SERVICES.CSS — Companion stylesheet for Services page
   Uses ONLY existing CSS variables from styles.css
═══════════════════════════════════════════════════ */

/* ── Quick Nav Strip ─────────────────────────────── */
.sv-quicknav-strip {
  background: var(--navy-deep);
  padding: 0;
  position: sticky;
  top: 56px;
  z-index: 90;
  border-bottom: 2px solid var(--teal);
}

.sv-quicknav-grid {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.sv-quicknav-grid::-webkit-scrollbar { display: none; }

.sv-qn-item {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 14px 20px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.18s, color 0.18s;
  flex-shrink: 0;
}

.sv-qn-item:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* ── Service Row Layout ──────────────────────────── */
.sv-service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sv-service-row--reverse {
  direction: rtl;
}

.sv-service-row--reverse > * {
  direction: ltr;
}

.sv-service-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}

.sv-service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--teal-soft);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.sv-service-copy h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy-deep);
  margin: 0 0 16px;
  line-height: 1.2;
}

.sv-service-copy p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

/* ── Feature List ────────────────────────────────── */
.sv-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.sv-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

.sv-tick {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Reference Tag ───────────────────────────────── */
.sv-ref-tag {
  font-size: 12px;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--navy-deep);
  padding: 10px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.5;
}

/* ── Section Subhead ─────────────────────────────── */
.sv-subhead {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  margin: 14px auto 0;
  line-height: 1.65;
}

/* ── Addon Grid ──────────────────────────────────── */
.sv-addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.sv-addon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 4px solid var(--teal);
  transition: box-shadow 0.22s, transform 0.22s;
}

.sv-addon-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.sv-addon-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 10px;
}

.sv-addon-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Capabilities Grid ───────────────────────────── */
.sv-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.sv-cap-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.sv-cap-group h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sv-cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sv-cap-tags span {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: var(--teal-soft);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ── CTA Strip (shared) ──────────────────────────── */
.h-cta-strip {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 80px 0;
}

.h-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.h-cta-copy h2 {
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.25;
  max-width: 580px;
}

.h-cta-copy p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 540px;
  line-height: 1.7;
}

.h-cta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
}

.h-cta-outline {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  border-bottom: 2px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: color 0.18s, border-color 0.18s;
}

.h-cta-outline:hover {
  color: #fff;
  border-color: var(--teal);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1120px) {
  .sv-quicknav-strip { top: 0; }
  .sv-service-row,
  .sv-service-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }
  .sv-addon-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-cap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .sv-addon-grid,
  .sv-cap-grid { grid-template-columns: 1fr; }
  .h-cta-inner { flex-direction: column; text-align: center; }
  .h-cta-actions { justify-content: center; }
}
