/* ══════════════════════════════════════════════════════
   SERVICES PAGE  — services.css
   Tone: Bold editorial — dark hero, immersive service
   detail sections, kinetic hover effects, rich process
   diagrams. Each service has its own anchor + panel.
══════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────── */
.svc-hero {
  background: var(--dk);
  padding: 6.5rem 0 0;
  position: relative;
  overflow: hidden;
}
.svc-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(113,75,103,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113,75,103,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.svc-hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113,75,103,.18) 0%, transparent 65%);
  pointer-events: none;
}
.svc-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 5.5rem;
}
.svc-hero-content .eyebrow { color: var(--pm); }
.svc-hero-content .eyebrow::before { background: var(--pm); }
.svc-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 1.25rem;
  max-width: 720px;
}
.svc-hero-content h1 em { font-style: normal; color: #fcd34d; }
.svc-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.svc-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 4rem; }
.btn-hero-w {
  background: #fff; color: var(--p); border: none;
  padding: 13px 30px; border-radius: var(--r8);
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .15s, transform .1s;
}
.btn-hero-w:hover { background: #f5f0f4; transform: translateY(-1px); }
.btn-hero-o {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 13px 30px; border-radius: var(--r8);
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .15s;
}
.btn-hero-o:hover { border-color: #fff; }

/* Service pill nav */
.svc-pill-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  position: relative;
  z-index: 2;
}
.svc-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.svc-pill:hover,
.svc-pill.active {
  background: var(--p);
  border-color: var(--p);
  color: #fff;
  transform: translateY(-2px);
}
.svc-pill-num {
  background: rgba(255,255,255,.15);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.svc-pill.active .svc-pill-num,
.svc-pill:hover .svc-pill-num { background: rgba(255,255,255,.25); }

/* ── Services Overview Grid ─────────────────────────── */
.svc-overview { padding: 6rem 0; background: var(--bg); }
.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
}
.svc-ov-card {
  background: var(--wh);
  border: 1px solid var(--br);
  border-radius: var(--r16);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.svc-ov-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--p);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22,.68,0,1.2);
}
.svc-ov-card:hover { border-color: var(--pm); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(113,75,103,.13); }
.svc-ov-card:hover::before { transform: scaleX(1); }
.svc-ov-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--pl);
  line-height: 1;
  margin-bottom: .5rem;
  transition: color .25s;
}
.svc-ov-card:hover .svc-ov-num { color: var(--pm); }
.svc-ov-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--pl);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background .25s;
}
.svc-ov-ico svg { width: 24px; height: 24px; stroke: var(--p); fill: none; stroke-width: 1.8; transition: stroke .25s; }
.svc-ov-card:hover .svc-ov-ico { background: var(--p); }
.svc-ov-card:hover .svc-ov-ico svg { stroke: #fff; }
.svc-ov-card h3 { font-size: 16px; font-weight: 700; color: var(--dk); margin-bottom: 8px; }
.svc-ov-card p  { font-size: 13px; color: var(--bd); line-height: 1.65; margin-bottom: 1.25rem; }
.svc-ov-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 1.25rem; }
.svc-ov-tag  { background: var(--pl); color: var(--p); font-size: 10.5px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.svc-ov-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--p); font-size: 13px; font-weight: 700;
  opacity: 0; transform: translateX(-8px);
  transition: opacity .2s, transform .2s;
}
.svc-ov-card:hover .svc-ov-link { opacity: 1; transform: translateX(0); }
.svc-ov-link svg { width: 14px; height: 14px; stroke: var(--p); fill: none; stroke-width: 2.5; transition: transform .2s; }
.svc-ov-card:hover .svc-ov-link svg { transform: translateX(4px); }

/* ── Individual Service Detail Sections ─────────────── */
.svc-detail { padding: 7rem 0; }
.svc-detail:nth-child(even) { background: var(--bg); }
.svc-detail:nth-child(odd)  { background: var(--wh); }

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.svc-detail-grid.reverse { direction: rtl; }
.svc-detail-grid.reverse > * { direction: ltr; }

/* Left: text content */
.svc-d-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pl);
  border: 1px solid var(--pm);
  color: var(--p);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}
.svc-d-eyebrow .svc-d-num {
  background: var(--p);
  color: #fff;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.svc-d-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--dk);
  line-height: 1.2;
  letter-spacing: -.3px;
  margin-bottom: 1rem;
}
.svc-d-desc {
  font-size: 15px;
  color: var(--bd);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Feature bullets */
.svc-features { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.svc-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r8);
  border: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.svc-feat:hover { background: var(--pl); border-color: var(--br); }
.svc-feat-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pl);
  border: 1.5px solid var(--pm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.svc-feat-check svg { width: 11px; height: 11px; stroke: var(--p); fill: none; stroke-width: 2.5; }
.svc-feat-text h4 { font-size: 13.5px; font-weight: 700; color: var(--dk); margin-bottom: 2px; }
.svc-feat-text p  { font-size: 12.5px; color: var(--bd); line-height: 1.55; }

.svc-d-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--p); color: #fff; border: none;
  padding: 13px 28px; border-radius: var(--r8);
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .15s, transform .1s, box-shadow .15s;
  text-decoration: none;
}
.svc-d-cta:hover { background: var(--pd); box-shadow: 0 8px 24px rgba(113,75,103,.3); transform: translateY(-1px); }
.svc-d-cta svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }

/* Right: visual panel */
.svc-visual {
  border-radius: var(--r24);
  overflow: hidden;
  position: relative;
}

/* Dark visual card style */
.svc-visual-dark {
  background: var(--dk);
  border-radius: var(--r24);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.svc-visual-dark::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113,75,103,.25) 0%, transparent 70%);
}

/* Module grid visual */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  position: relative;
  z-index: 1;
}
.module-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r12);
  padding: 1rem;
  text-align: center;
  transition: background .2s, transform .2s;
}
.module-item:hover { background: rgba(113,75,103,.4); transform: translateY(-2px); }
.module-item-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(113,75,103,.5);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .625rem;
}
.module-item-ico svg { width: 16px; height: 16px; stroke: var(--pm); fill: none; stroke-width: 2; }
.module-item h5 { font-size: 11px; font-weight: 700; color: #fff; }
.module-item span { font-size: 10px; color: rgba(255,255,255,.45); margin-top: 2px; display: block; }

/* Stats visual */
.svc-stats-visual {
  background: var(--pl);
  border-radius: var(--r24);
  padding: 2rem;
  border: 1px solid var(--br);
}
.ssv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.ssv-title { font-size: 13px; font-weight: 700; color: var(--dk); }
.ssv-badge { background: var(--p); color: #fff; font-size: 10.5px; font-weight: 700; padding: 3px 12px; border-radius: 20px; }
.ssv-bars { display: flex; flex-direction: column; gap: 1rem; }
.ssv-bar-row { }
.ssv-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--bd); margin-bottom: 5px; font-weight: 500; }
.ssv-bar-track { height: 8px; background: #e8e0e6; border-radius: 4px; overflow: hidden; }
.ssv-bar-fill  { height: 100%; background: var(--p); border-radius: 4px; width: 0; transition: width 1.4s .4s ease; }
.ssv-bar-fill.teal { background: var(--ac); }
.ssv-bar-fill.gold { background: var(--gold); }
.ssv-kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-top: 1.5rem; }
.ssv-kpi {
  background: var(--wh);
  border-radius: var(--r8);
  padding: .875rem;
  text-align: center;
}
.ssv-kpi-n { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--p); line-height: 1; }
.ssv-kpi-l { font-size: 10.5px; color: var(--bd); margin-top: 3px; line-height: 1.4; }

/* Code/tech visual */
.svc-code-visual {
  background: #1a1625;
  border-radius: var(--r24);
  padding: 1.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 12.5px;
  position: relative;
  overflow: hidden;
}
.code-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.25rem;
}
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot.r { background: #ff5f56; }
.code-dot.y { background: #ffbd2e; }
.code-dot.g { background: #27c93f; }
.code-filename { font-size: 11px; color: rgba(255,255,255,.3); margin-left: 8px; }
.code-line { margin-bottom: 4px; white-space: pre; }
.code-comment { color: #6b7280; }
.code-keyword { color: #c678dd; }
.code-string  { color: #98c379; }
.code-func    { color: #61afef; }
.code-var     { color: #e06c75; }
.code-num     { color: #d19a66; }
.code-indent1 { padding-left: 1rem; }
.code-indent2 { padding-left: 2rem; }

/* Workflow/automation visual */
.svc-flow-visual {
  background: var(--wh);
  border: 1px solid var(--br);
  border-radius: var(--r24);
  padding: 2rem;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .875rem 1rem;
  border-radius: var(--r8);
  border: 1px solid var(--br);
  margin-bottom: .625rem;
  transition: border-color .2s, background .2s, transform .2s;
}
.flow-step:hover { border-color: var(--pm); background: var(--pl); transform: translateX(4px); }
.flow-step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--p);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.flow-step-ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--pl);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.flow-step-ico svg { width: 15px; height: 15px; stroke: var(--p); fill: none; stroke-width: 2; }
.flow-step-text h5 { font-size: 13px; font-weight: 700; color: var(--dk); }
.flow-step-text p  { font-size: 11.5px; color: var(--bd); margin-top: 1px; }
.flow-connector { text-align: center; color: var(--pm); font-size: 18px; margin: -4px 0; line-height: 1; }

/* Marketing visual */
.svc-mkt-visual {
  background: var(--dk);
  border-radius: var(--r24);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.mkt-channels { display: flex; flex-direction: column; gap: .75rem; position: relative; z-index: 1; }
.mkt-channel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r12);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .875rem;
  transition: background .2s;
}
.mkt-channel:hover { background: rgba(255,255,255,.1); }
.mkt-channel-ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(113,75,103,.5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mkt-channel-ico svg { width: 16px; height: 16px; stroke: var(--pm); fill: none; stroke-width: 2; }
.mkt-channel-name { font-size: 13px; font-weight: 700; color: #fff; flex: 1; }
.mkt-channel-bar-wrap { flex: 1.5; }
.mkt-channel-bar-track { height: 5px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.mkt-channel-bar-fill  { height: 100%; border-radius: 3px; background: var(--p); width: 0; transition: width 1.4s ease; }
.mkt-channel-pct { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.7); min-width: 34px; text-align: right; }

/* Social media visual */
.svc-social-visual {
  background: var(--wh);
  border: 1px solid var(--br);
  border-radius: var(--r24);
  padding: 1.75rem;
}
.social-post {
  border: 1px solid var(--br);
  border-radius: var(--r12);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  transition: border-color .2s, box-shadow .2s;
}
.social-post:hover { border-color: var(--pm); box-shadow: var(--shadow-sm); }
.social-post-header { display: flex; align-items: center; gap: 8px; margin-bottom: .625rem; }
.social-post-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--p);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.social-post-brand { font-size: 12.5px; font-weight: 700; color: var(--dk); }
.social-post-platform { margin-left: auto; }
.social-post-platform svg { width: 14px; height: 14px; stroke: var(--bd); fill: none; stroke-width: 2; }
.social-post-text { font-size: 12.5px; color: var(--bd); line-height: 1.6; margin-bottom: .75rem; }
.social-post-stats { display: flex; gap: 1rem; }
.social-stat { display: flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--bd); font-weight: 600; }
.social-stat svg { width: 12px; height: 12px; stroke: var(--bd); fill: none; stroke-width: 2; }

/* ── Technologies / Stack Section ───────────────────── */
.svc-stack { padding: 5rem 0; background: var(--wh); border-top: 1px solid var(--br); }
.stack-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 900px; margin: 2.5rem auto 0; }
.stack-item {
  background: var(--bg);
  border: 1px solid var(--br);
  border-radius: var(--r8);
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dk);
  transition: border-color .18s, color .18s, background .18s, transform .18s;
  cursor: default;
}
.stack-item:hover { border-color: var(--p); color: var(--p); background: var(--pl); transform: translateY(-2px); }
.stack-item.featured { background: var(--pl); border-color: var(--pm); color: var(--p); }

/* ── Pricing Packages ────────────────────────────────── */
.svc-pricing { padding: 7rem 0; background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--wh);
  border: 1px solid var(--br);
  border-radius: var(--r24);
  padding: 2.25rem;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border: 2px solid var(--p);
  background: var(--p);
}
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fcd34d;
  color: var(--dk);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .3px;
}
.pricing-name { font-size: 13px; font-weight: 700; color: var(--bd); text-transform: uppercase; letter-spacing: 1px; margin-bottom: .75rem; }
.pricing-card.featured .pricing-name { color: rgba(255,255,255,.7); }
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--dk);
  line-height: 1;
  margin-bottom: .25rem;
}
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-period { font-size: 13px; color: var(--bd); margin-bottom: 1.5rem; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.65); }
.pricing-divider { height: 1px; background: var(--br); margin-bottom: 1.5rem; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,.2); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--dk);
  line-height: 1.5;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.85); }
.pricing-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--pl);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .pricing-check { background: rgba(255,255,255,.2); }
.pricing-check svg { width: 9px; height: 9px; stroke: var(--p); fill: none; stroke-width: 3; }
.pricing-card.featured .pricing-check svg { stroke: #fff; }
.pricing-features li.disabled { color: var(--bd); opacity: .5; }
.pricing-features li.disabled .pricing-check { background: var(--bg); }
.pricing-features li.disabled .pricing-check svg { stroke: var(--bd); }
.btn-pricing {
  width: 100%; padding: 12px; border-radius: var(--r8);
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .15s;
}
.btn-pricing-outline {
  background: transparent; color: var(--p); border: 1.5px solid var(--p);
}
.btn-pricing-outline:hover { background: var(--p); color: #fff; }
.btn-pricing-white {
  background: #fff; color: var(--p); border: none;
}
.btn-pricing-white:hover { background: #f5f0f4; transform: translateY(-1px); }

/* ── Process section ─────────────────────────────────── */
.svc-process { padding: 7rem 0; background: var(--wh); }
.process-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 0;
  position: relative;
  margin-top: 3.5rem;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(100%/12);
  right: calc(100%/12);
  height: 2px;
  background: var(--br);
  z-index: 0;
}
.pt-step {
  text-align: center;
  padding: 0 .5rem 2rem;
  position: relative;
  z-index: 1;
}
.pt-num {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--wh);
  border: 2px solid var(--br);
  color: var(--p);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all .25s;
  cursor: default;
}
.pt-step:hover .pt-num { background: var(--p); border-color: var(--p); color: #fff; box-shadow: 0 8px 24px rgba(113,75,103,.3); transform: translateY(-3px); }
.pt-step h4 { font-size: 13.5px; font-weight: 700; color: var(--dk); margin-bottom: 6px; }
.pt-step p  { font-size: 12px; color: var(--bd); line-height: 1.6; }

/* ── Industries served ───────────────────────────────── */
.svc-industries { padding: 6rem 0; background: var(--bg); }
.industries-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.industry-tile {
  background: var(--wh);
  border: 1px solid var(--br);
  border-radius: var(--r12);
  padding: 1.5rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: default;
}
.industry-tile:hover { border-color: var(--pm); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.industry-tile.featured {
  background: var(--p);
  border-color: var(--p);
  grid-column: span 2;
}
.ind-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--pl);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.industry-tile.featured .ind-ico { background: rgba(255,255,255,.2); }
.ind-ico svg { width: 18px; height: 18px; stroke: var(--p); fill: none; stroke-width: 2; }
.industry-tile.featured .ind-ico svg { stroke: #fff; }
.industry-tile h4 { font-size: 14px; font-weight: 700; color: var(--dk); margin-bottom: 4px; }
.industry-tile.featured h4 { color: #fff; }
.industry-tile p  { font-size: 12.5px; color: var(--bd); line-height: 1.6; }
.industry-tile.featured p  { color: rgba(255,255,255,.72); }

/* ── CTA ─────────────────────────────────────────────── */
.svc-cta { background: var(--dk); padding: 7rem 0; }
.svc-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.svc-cta-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1rem;
}
.svc-cta-left h2 em { font-style: normal; color: #fcd34d; }
.svc-cta-left p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 2rem; }
.svc-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cta-gold {
  background: #fcd34d; color: var(--dk); border: none;
  padding: 14px 32px; border-radius: var(--r8);
  font-size: 14.5px; font-weight: 800; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .15s, transform .1s;
}
.btn-cta-gold:hover { background: #f6c430; transform: translateY(-1px); }
.btn-cta-wh {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 14px 32px; border-radius: var(--r8);
  font-size: 14.5px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .15s;
}
.btn-cta-wh:hover { border-color: #fff; }

.svc-cta-right { display: flex; flex-direction: column; gap: 1rem; }
.cta-svc-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r12);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: default;
  transition: background .2s;
}
.cta-svc-pill:hover { background: rgba(255,255,255,.1); }
.cta-svc-pill-name { font-size: 14px; font-weight: 600; color: #fff; }
.cta-svc-pill-arrow { color: var(--pm); font-size: 18px; transition: transform .2s; }
.cta-svc-pill:hover .cta-svc-pill-arrow { transform: translateX(4px); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-detail-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .svc-detail-grid.reverse { direction: ltr; }
  .svc-overview-grid     { grid-template-columns: 1fr 1fr; }
  .pricing-grid          { grid-template-columns: 1fr; max-width: 420px; margin: 3rem auto 0; }
  .process-track         { grid-template-columns: repeat(3,1fr); }
  .process-track::before { display: none; }
  .industries-mosaic     { grid-template-columns: 1fr 1fr; }
  .industry-tile.featured { grid-column: span 1; }
  .svc-cta-inner         { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .svc-hero-content h1 { font-size: 34px; }
  .svc-overview-grid   { grid-template-columns: 1fr; }
  .industries-mosaic   { grid-template-columns: 1fr; }
  .svc-cta-left h2     { font-size: 28px; }
  .svc-pill-nav        { gap: 6px; }
  .svc-pill            { font-size: 12px; padding: 6px 14px; }
  .module-grid         { grid-template-columns: repeat(2,1fr); }
}
