/* ============================================================
   STACKYZER — services.css
   Shared stylesheet for all service sub-pages
   ============================================================ */

/* ── ROOT TOKENS ─────────────────────────────────────────── */
:root {
  --white:        #ffffff;
  --grey-1:       #f0f0f0;
  --grey-2:       #e4e4e4;
  --grey-3:       #cccccc;
  --dark:         #1a1a1a;
  --dark-2:       #2a2a2a;
  --dark-3:       #333333;

  --green-mid:    #2ea36a;
  --green-dark:   #2ea36a;
  --green-dim:    rgba(46,163,106,.10);
  --green-border: rgba(46,163,106,.25);
  --green-light:  #9fd3b5;

  --txt-dark:     #111111;
  --txt-mid:      #444444;
  --txt-muted:    #777777;

  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    26px;
  --radius-xl:    36px;
  --shadow-sm:    0 4px 14px rgba(0,0,0,.07);
  --shadow-md:    0 10px 32px rgba(0,0,0,.12);
  --shadow-hover: 0 20px 50px rgba(0,0,0,.14);
  --transition:   all .35s cubic-bezier(.25,.46,.45,.94);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  background: var(--grey-2);
  color: var(--txt-mid);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* prevent horizontal scroll on mobile */
}
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════════════════════════
   SECTION BACKGROUNDS
══════════════════════════════════════════════════════════ */
.sec-white,
.svc-bg-white { background: var(--white); color: var(--txt-mid); }
.sec-white h2, .sec-white h3, .sec-white h4, .sec-white h5,
.svc-bg-white h2, .svc-bg-white h3, .svc-bg-white h4, .svc-bg-white h5 { color: #111111; }
.sec-white .svc-label,
.svc-bg-white .svc-label { color: #111111; }

.sec-grey,
.bg-surface { background: var(--grey-1); color: var(--txt-mid); }
.sec-grey h2, .sec-grey h3, .sec-grey h4, .sec-grey h5,
.bg-surface h2, .bg-surface h3, .bg-surface h4, .bg-surface h5 { color: var(--txt-dark); }
.sec-grey .svc-label,
.bg-surface .svc-label { color: #111111; }

.sec-grad {
  background: linear-gradient(160deg, var(--grey-2) 0%, var(--grey-3) 100%);
  color: var(--txt-mid);
}
.sec-grad h2, .sec-grad h3, .sec-grad h4, .sec-grad h5 { color: var(--txt-dark); }
.sec-grad .svc-label { color: var(--green-dark); }

.sec-dark { background: var(--dark); color: #bbbbbb; }
.sec-dark h2, .sec-dark h3, .sec-dark h4, .sec-dark h5 { color: #eeeeee; }
.sec-dark .svc-label { color: var(--green-mid); }
.sec-dark .text-muted, .sec-dark small { color: #888888 !important; }

/* ══════════════════════════════════════════════════════════
   SECTION PADDING + HEADING
══════════════════════════════════════════════════════════ */
.section-pad { padding: 88px 0; }

.section-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--txt-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════════════════════
   SECTION LABEL
══════════════════════════════════════════════════════════ */
.svc-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #111111;
}
.svc-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  display: inline-block;
}

.svc-section-intro {
  max-width: 560px;
  margin: 10px auto 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--txt-muted);
}
.sec-dark .svc-section-intro { color: #999999; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.svc-hero {
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(46,163,106,.18) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(159,211,181,.08) 0%, transparent 60%);
  pointer-events: none;
}

.svc-hero-badge {
  display: inline-block;
  background: rgba(46,163,106,.22);
  color: var(--green-mid);
  border: 1px solid rgba(124,190,150,.30);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.svc-hero-title {
  font-size: clamp(28px, 5vw, 62px);
  font-family: 'DM Serif Display', serif;
  color: #111111;
  line-height: 1.1;
  margin-bottom: 20px;
}
.svc-hero-title em { font-style: italic; color: var(--green-mid); }

.svc-hero-lead {
  color: #444444;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 36px;
}

/* Outline button */
.svc-btn-outline {
  border: 1.5px solid #333333;
  color: #111111;
  background: transparent;
  border-radius: 999px;
  padding: 10px 28px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
}
.svc-btn-outline:hover {
  background: rgba(0,0,0,.06);
  color: #111111;
  transform: translateY(-2px);
}

/* Stat boxes */
.svc-stat-box {
  background: rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.svc-stat-box:hover { background: rgba(0,0,0,.09); }
.svc-stat-val { font-size: 28px; font-weight: 800; color: var(--green-dark); line-height: 1; }
.svc-stat-lbl { font-size: 11px; color: #666666; margin-top: 5px; }

/* ── Hero image (right column) ─────────────────────────── */
.svc-hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Floating badge — bottom left */
.svc-hero-img-badge-left {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgb(0, 0, 0);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
}

/* Floating badge — top right */
.svc-hero-img-badge-right {
  position: absolute;
  top: 0;
  right: 0;
  margin: 12px;
  background: rgba(2,43,23,.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(46,163,106,.35);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  text-align: center;
}
.svc-hero-img-badge-right .badge-val {
  font-size: 20px;
  font-weight: 800;
  color: #9fd3b5;
  line-height: 1;
  font-family: 'Manrope', sans-serif;
  display: block;
}
.svc-hero-img-badge-right .badge-lbl {
  font-size: 11px;
  color: rgba(159,211,181,.7);
  display: block;
}

/* Pulse dot */
.svc-pulse-dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: pulse-anim 1.8s ease-in-out infinite;
}
@keyframes pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}
/* ─── CUSTOM CURSOR ────────────────────────────────────── */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--green-dark);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, background .2s ease;
}
.custom-cursor.hovered {
  transform: translate(-50%, -50%) scale(2);
  background: rgba(46, 163, 106, .15);
}
/* ══════════════════════════════════════════════════════════
   PLATFORMS STRIP
══════════════════════════════════════════════════════════ */
.svc-platforms {
  background: var(--dark);
  padding: 56px 0;
}
.svc-platforms-label {
  color: rgba(255,255,255,.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.svc-platforms-title { color: #ffffff; }

.svc-platform-badge {
  width: 140px;
  height: 70px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.89);
  border: 1px solid rgba(255,255,255,.14);
  transition: var(--transition);
}
.svc-platform-badge img {
  max-width: 90px;
  max-height: 40px;
  object-fit: contain;
  opacity: 0.85;
  transition: var(--transition);
}
.svc-platform-badge:hover {
  background: #ffffff;
  border-color: var(--green-dark);
  transform: translateY(-3px);
}
.svc-platform-badge:hover img { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   FULL-BLEED IMAGE BREAK
══════════════════════════════════════════════════════════ */
.svc-img-break {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.svc-img-break-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.svc-img-break-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.75) 55%, rgba(0,0,0,.50) 100%);
  z-index: 1;
}
.svc-img-break-content {
  position: relative;
  z-index: 2;
  padding: 72px 0;
}
.svc-img-break-badge {
  display: inline-block;
  background: rgba(46,163,106,.20);
  border: 1px solid rgba(46,163,106,.40);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9fd3b5;
  margin-bottom: 16px;
}
.svc-img-break-heading {
  font-family: 'DM Serif Display', serif;
  color: #ffffff;
  font-size: clamp(22px, 3.5vw, 38px);
  line-height: 1.2;
  margin-bottom: 16px;
}
.svc-img-break-lead {
  color: rgba(159,211,181,.85);
  font-size: 15px;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 28px;
}
.svc-img-break-btn {
  display: inline-block;
  background: var(--green-dark);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 999px;
  transition: var(--transition);
  text-decoration: none;
}
.svc-img-break-btn:hover {
  background: var(--green-mid);
  color: #fff;
  transform: translateY(-2px);
}

.svc-img-stat-tile {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
}
.svc-img-stat-val {
  font-size: 28px;
  font-weight: 800;
  color: #9fd3b5;
  font-family: 'Manrope', sans-serif;
  line-height: 1;
  display: block;
}
.svc-img-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  display: block;
}

/* ══════════════════════════════════════════════════════════
   IMAGE WRAP + CAPTION + BADGES
══════════════════════════════════════════════════════════ */
.svc-img-wrap { position: relative; }
.svc-img-wrap img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.svc-img-compact  { height: 260px; }
.svc-img-tall     { height: 440px; }
.svc-img-tall-xl  { height: 460px; }

.svc-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 20px;
  background: linear-gradient(to top, rgba(2,43,23,.92), transparent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.svc-img-caption p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
}

.svc-img-stat-badge {
  position: absolute;
  top: 0; right: 0;
  margin: 12px;
  background: rgba(2,43,23,.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(46,163,106,.35);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  text-align: center;
}
.svc-img-stat-badge .sb-val {
  font-size: 22px;
  font-weight: 800;
  color: #9fd3b5;
  line-height: 1;
  font-family: 'Manrope', sans-serif;
  display: block;
}
.svc-img-stat-badge .sb-lbl {
  font-size: 11px;
  color: rgba(159,211,181,.7);
  display: block;
}

/* ══════════════════════════════════════════════════════════
   SUPPORT BOX
══════════════════════════════════════════════════════════ */
.svc-support-box {
  background: #f0faf4;
  border: 1px solid #c5e8d5;
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.svc-support-box p {
  margin: 0;
  color: var(--txt-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   DIFFERENCE CARDS
══════════════════════════════════════════════════════════ */
.svc-diff-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  height: 100%;
  border: 1.5px solid var(--grey-2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-diff-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.svc-diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--grey-3);
}
.svc-diff-card:hover::after { transform: scaleX(1); }
.svc-diff-icon {
  width: 54px;
  height: 54px;
  background: var(--grey-1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.svc-diff-icon.mb-0 {
  margin-bottom: 0 !important;
}

/* Bootstrap Icons */
.svc-diff-icon i {
  font-size: 24px;
  color: var(--green-dark);
  line-height: 1;
}

.svc-diff-card h5 {
  font-weight: 700;
  font-size: 16px;
  color: var(--txt-dark);
  margin-bottom: 12px;
}
.svc-check-list { padding: 0; margin: 0; list-style: none; }
.svc-check-list li {
  font-size: 13.5px;
  color: var(--txt-muted);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.svc-check-list li::before {
  content: '✓';
  color: var(--green-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════════
   TREND CARDS
══════════════════════════════════════════════════════════ */
.svc-trend-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  border-left: 4px solid var(--green-dark);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.svc-trend-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.svc-trend-icon { font-size: 30px; margin-bottom: 14px; display: block; }

.svc-trend-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--txt-dark);
}

.svc-trend-card p {
  font-size: 13.5px;
  line-height: 1.75;
  margin: 0;
  color: var(--txt-muted);
  flex: 1;
}

.svc-trend-tag {
  display: inline-block;
  background: transparent;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-top: 20px;
  border: 1.5px solid var(--green-dark);
}

/* ══════════════════════════════════════════════════════════
   INDUSTRY CARDS
══════════════════════════════════════════════════════════ */
.svc-industry-card {
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  background: #f6fbf8;
  border: 1.5px solid rgba(46,163,106,.2);
  color: var(--txt-dark);
}
.svc-industry-card:hover {
  background: var(--white);
  border-color: var(--green-dark);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(46,163,106,.18);
}
.svc-industry-icon { font-size: 34px; margin-bottom: 12px; display: block; }
.svc-industry-card h6 { font-weight: 700; font-size: 13px; color: var(--txt-dark); margin: 0; }

/* ══════════════════════════════════════════════════════════
   CHIP TAGS
══════════════════════════════════════════════════════════ */
.svc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1.5px solid var(--grey-2);
  color: var(--txt-dark);
}
.svc-chip:hover {
  border-color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46,163,106,.15);
}
.svc-chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-dark);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   NOTE BOX
══════════════════════════════════════════════════════════ */
.svc-note-box {
  border-radius: var(--radius-md);
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(46,163,106,.25);
}
.svc-note-box p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-dark);
}

/* ══════════════════════════════════════════════════════════
   NUMBERED BUILD LIST
══════════════════════════════════════════════════════════ */
.svc-build-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-2);
}
.svc-build-item:last-child { border-bottom: none; }
.svc-build-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--green-dark);
  color: #ffffff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.svc-build-text {
  font-size: 14.5px;
  line-height: 1.65;
  padding-top: 6px;
  color: var(--txt-mid);
}

/* ══════════════════════════════════════════════════════════
   SECURITY LIST
══════════════════════════════════════════════════════════ */
.svc-security-list { list-style: none; padding: 0; margin: 0; }
.svc-security-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 13.5px; font-weight: 500;
  border-bottom: 1px solid var(--grey-2);
  color: var(--txt-mid);
}
.svc-security-list li:last-child { border-bottom: none; }
.svc-security-icon {
  width: 32px; height: 32px;
  background: var(--grey-1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

/* ══════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════ */
.svc-cta { padding: 80px 0; }
.svc-cta-eyebrow {
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.svc-cta h2 {
  color: #111111;
  font-family: 'DM Serif Display', serif;
  margin-bottom: 16px;
}
.svc-cta p {
  color: #333333;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.85;
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 767px
══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }
  .svc-cta     { padding: 56px 0; }

  /* Hero */
  .svc-hero { padding: 64px 0 48px; }
  .svc-hero-title { font-size: clamp(26px, 7vw, 40px); }
  .svc-hero-lead  { font-size: .95rem; margin-bottom: 28px; }

  /* Hero image */
  .svc-hero-img { height: 260px; }

  /* Hide floating badges on small screens — they overlap */
  .svc-hero-img-badge-left,
  .svc-hero-img-badge-right { display: none; }

  /* Stat boxes — all equal height via flex */
  .svc-stat-val { font-size: 24px; }
  .svc-stat-box { padding: 16px 12px; min-height: 80px; }

  /* Buttons stack full width */
  .svc-btn-outline {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  /* Section heading */
  .section-heading { font-size: clamp(20px, 5vw, 28px); }

  /* Cards */
  .svc-diff-card { padding: 24px 20px; }
  .svc-trend-card { padding: 22px 18px; }

  /* Image heights */
  .svc-img-compact  { height: 200px; }
  .svc-img-tall     { height: 260px; }
  .svc-img-tall-xl  { height: 280px; }

  /* Image break */
  .svc-img-break    { min-height: 300px; }
  .svc-img-break-content { padding: 44px 0; }
  .svc-img-break-heading { font-size: clamp(20px, 5vw, 28px); }
  .svc-img-break-lead    { font-size: 14px; }

  /* Stat tiles in image break */
  .svc-img-stat-val { font-size: 22px; }

  /* Build list */
  .svc-build-text { font-size: 13.5px; }

  /* Platforms */
  .svc-platform-badge { width: 110px; height: 58px; }
  .svc-platform-badge img { max-width: 72px; max-height: 32px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤ 480px
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .section-pad { padding: 44px 0; }
  .svc-cta     { padding: 44px 0; }

  .svc-hero { padding: 52px 0 40px; }
  .svc-hero-title { font-size: clamp(24px, 7vw, 34px); }

  .svc-hero-img { height: 220px; }
  .svc-img-tall { height: 220px; }

  /* Chips wrap nicely */
  .svc-chip { font-size: 12px; padding: 9px 14px; }

  /* Diff card */
  .svc-diff-card { padding: 20px 16px; }
  .svc-diff-icon { width: 44px; height: 44px; }

  /* Build list */
  .svc-build-item { gap: 12px; }
  .svc-build-num  { width: 30px; height: 30px; font-size: 12px; }
  .svc-build-text { font-size: 13px; padding-top: 4px; }

  /* Industry cards smaller padding */
  .svc-industry-card { padding: 18px 14px; }
  .svc-industry-icon { font-size: 28px; }
}
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
  .container,
  .container-xl,
  .container-fluid {
    overflow-x: hidden;
  }
}