/* ============================================================
   OMA IT Solutions — design system (approved reference)
   Deep blue + dark navy + a gold accent for trust/credibility
   moments. IBM Plex Sans Arabic for Arabic headings, IBM Plex
   Mono for technical/numeric readouts, Tajawal for Arabic body,
   Inter for English.
   ============================================================ */

:root {
  --ink: #0b1220;
  --ink-soft: #4a5468;
  --ink-faint: #8892a3;
  --paper: #f5f7fc;
  --paper-raised: #ffffff;
  --line: #e3e8f1;
  --line-soft: #eef1f7;
  --brand: #0b4fbf;
  --brand-dark: #083a8f;
  --brand-deepest: #071b3d;
  --brand-soft: rgba(11, 79, 191, 0.08);
  --accent: #17c3b2;
  --accent-ink: #063d38;
  --gold: #b8862f;
  --gold-soft: rgba(184, 134, 47, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px -22px rgba(11, 18, 32, 0.18);
  --container: 1180px;
  --font-en-head: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-en-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-ar-head: 'IBM Plex Sans Arabic', 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
  --font-ar: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-en-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
html[lang="ar"] body, html[lang="ar"] { font-family: var(--font-ar); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 { font-family: var(--font-en-head); font-weight: 700; line-height: 1.18; margin: 0 0 .5em; letter-spacing: -0.01em; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4, html[lang="ar"] h5 { font-family: var(--font-ar-head); font-weight: 700; letter-spacing: 0; }
.mono { font-family: var(--font-mono); letter-spacing: .02em; }
.ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--dark { background: var(--brand-deepest); color: #eef2fb; }
.section--dark p { color: #b7c3de; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--brand { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; }
.section--brand p { color: #d9e6ff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); display: inline-block; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -8px rgba(11,79,191,.55); }
.btn--primary:hover { background: var(--brand-dark); }
.btn--accent { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 24px -8px rgba(23,195,178,.5); }
.btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost:hover { border-color: #fff; }
.btn--outline { border-color: var(--brand); color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,248,252,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.brand img { height: 36px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > .nav-group { position: relative; }
.nav-group > button, .nav-link {
  background: none; border: none; font: inherit; cursor: pointer;
  padding: 10px 14px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14.5px; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-group > button:hover, .nav-link:hover { background: #eef1f9; color: var(--brand); }
.nav-group__panel {
  position: absolute; top: calc(100% + 8px); inset-inline-start: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 10px; min-width: 240px;
  display: none; grid-template-columns: 1fr; gap: 2px;
}
.nav-group.is-open .nav-group__panel { display: grid; }
.nav-group__panel a { padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; }
.nav-group__panel a:hover { background: #eef1f9; color: var(--brand); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
  font-weight: 700; font-size: 13px; background: #fff;
}
.lang-switch:hover { border-color: var(--brand); color: var(--brand); }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 96px 0 80px; background: radial-gradient(1200px 600px at 80% -10%, #dbe7ff 0%, transparent 60%), var(--paper); }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 4.4vw, 56px); }
.hero__lead { font-size: 18px; max-width: 46ch; }
.hero__actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero__art { position: relative; }
.hero__art img { border-radius: var(--radius); box-shadow: var(--shadow); }
.hero__ring {
  position: absolute; inset-inline-end: -40px; top: -40px; width: 160px; height: 160px;
  border: 18px solid var(--accent); border-radius: 50%; opacity: .18; z-index: -1;
}
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; } }

/* ---------- generic content blocks (migrated pages) ---------- */
.page-hero { padding: 64px 0 40px; background: var(--brand-deepest); color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 3.6vw, 44px); }
.breadcrumbs { font-size: 13px; color: #9db3dc; margin-bottom: 18px; }
.breadcrumbs a:hover { color: #fff; }

.content-blocks { max-width: 880px; margin: 0 auto; }
.content-blocks h2 { font-size: 28px; margin-top: 1.4em; }
.content-blocks h3, .content-blocks h4, .content-blocks h5 { margin-top: 1.2em; color: var(--brand-dark); }
.content-blocks p { font-size: 16.5px; }
.content-blocks ul { padding-inline-start: 22px; color: var(--ink-soft); }
.content-blocks li { margin-bottom: .5em; }
.content-blocks img { border-radius: var(--radius); margin: 20px 0; box-shadow: var(--shadow); }
.content-blocks .btn { margin: 10px 0; }
.content-blocks figure.img-row { display: flex; gap: 16px; flex-wrap: wrap; margin: 20px 0; }
.content-blocks figure.img-row img { flex: 1 1 140px; max-height: 90px; width: auto; object-fit: contain; margin: 0; box-shadow: none; background: #fff; border: 1px solid var(--line); padding: 10px; }

/* ---------- feature grid ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 52px; height: 52px; border-radius: 12px; background: #eaf1ff; color: var(--brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px;
  flex-shrink: 0;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 14.5px; margin: 0; }
.card__icon--img { background: #eaf1ff; padding: 10px; }
.card__icon--img img { width: 100%; height: 100%; object-fit: contain; }

.content-blocks .content-grid { margin: 28px 0 34px; }
.content-blocks .tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }
.content-blocks .tag-pill {
  display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 999px;
  background: #eaf1ff; color: var(--brand-dark); font-size: 13.5px; font-weight: 700;
}
.content-blocks .inline-icon {
  display: inline-flex; width: 44px; height: 44px; border-radius: 10px; background: #eaf1ff;
  align-items: center; justify-content: center; margin: 6px 10px 6px 0; padding: 8px; vertical-align: middle;
}
.content-blocks .inline-icon img { width: 100%; height: 100%; object-fit: contain; margin: 0; box-shadow: none; }

.logo-strip { display: flex; flex-wrap: wrap; gap: 28px 40px; align-items: center; justify-content: center; }
.logo-strip img {
  max-height: 72px; max-width: 150px; width: auto; object-fit: contain;
  opacity: .8; filter: grayscale(1) contrast(1.15); transition: opacity .2s, filter .2s;
}
.logo-strip img:hover { opacity: 1; filter: none; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; }

/* ---------- contact form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
input, textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; background: #fff; color: var(--ink);
}
input:focus, textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; }
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 10px; }
.alert { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 20px; font-weight: 600; }
.alert--success { background: #e4f9f2; color: #096b52; }
.alert--error { background: #fdeceb; color: #a3231a; }

/* ---------- footer ---------- */
.site-footer { background: var(--brand-deepest); color: #b7c3de; padding: 64px 0 28px; }
.site-footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.site-footer a { color: #b7c3de; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-legal-links { display: flex; gap: 18px; }
.footer-legal-ids { display: flex; gap: 16px; flex-wrap: wrap; font-size: 11px; color: #8fa2ce; }
.footer-legal-links a:hover { color: #fff; }
.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-row a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.social-row a:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- responsive nav ---------- */
@media (max-width: 980px) {
  .nav { display: none; }
  .nav.is-open { display: flex; flex-direction: column; align-items: stretch; position: fixed; inset: 64px 0 0 0; background: #fff; padding: 16px; overflow-y: auto; z-index: 60; }
  .nav-toggle { display: inline-flex; }
  .nav-group__panel { position: static; box-shadow: none; border: none; padding-inline-start: 12px; }
  .header-actions .phone-chip { display: none; }
}

/* RTL flips */
html[dir="rtl"] .eyebrow::before { order: 2; }
html[dir="rtl"] .hero__ring { inset-inline-end: auto; inset-inline-start: -40px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--brand); color: #fff; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head.align-start { margin-inline: 0; text-align: start; max-width: 660px; }

/* ---------- quick facts + brand chips (service hero) ---------- */
.quick-facts { display: flex; gap: 30px; padding-top: 24px; margin-top: 30px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.qf b { display: block; font-family: var(--font-mono); font-size: 19px; color: var(--brand-dark); font-weight: 600; }
.qf span { font-size: 12.5px; color: var(--ink-faint); }
.brand-chips, .hero__brand-chips { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.brand-chip { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); border: 1px solid var(--line); padding: 5px 12px; border-radius: 999px; background: var(--paper-raised); }

/* ---------- pain points ---------- */
.pain-card { position: relative; }
.pain-num { font-family: var(--font-mono); font-size: 13px; color: var(--gold); font-weight: 700; display: block; margin-bottom: 10px; }

/* ---------- process steps ---------- */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step { position: relative; padding-inline-start: 4px; }
.process-num { font-family: var(--font-mono); font-size: 22px; color: var(--brand); font-weight: 700; display: block; margin-bottom: 10px; }
.process-step h4 { font-size: 15.5px; margin-bottom: 6px; }
.process-step p { font-size: 13.5px; margin: 0; }
@media (max-width: 780px) { .process-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-row { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; text-align: start; font: inherit; font-weight: 700; font-size: 15px;
  color: var(--ink); padding: 20px 2px; cursor: pointer;
}
.faq-plus { font-size: 20px; color: var(--brand); transition: transform .2s; flex-shrink: 0; }
.faq-item.is-open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.is-open .faq-a { max-height: 260px; }
.faq-a p { padding: 0 2px 20px; margin: 0; font-size: 14.5px; }

/* ---------- clients by sector ---------- */
.sector-title { font-size: 15px; color: var(--brand-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.sector-title::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.sector-list { list-style: none; margin: 0; padding: 0; }
.sector-list li { font-size: 13.5px; color: var(--ink-soft); padding: 8px 0; border-top: 1px solid var(--line-soft); }
.sector-list li:first-child { border-top: none; }

/* ---------- partners strip (text badges) ---------- */
.partners-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.partner-badge { font-family: var(--font-mono); font-size: 14px; color: var(--ink-soft); background: var(--paper-raised); padding: 24px; text-align: center; transition: color .2s, background .2s; }
.partner-badge:hover { color: var(--brand-dark); background: var(--brand-soft); }
@media (max-width: 780px) { .partners-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- legal strip + trust bar ---------- */
.legal-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; background: var(--paper-raised); }
.legal-strip__inner { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; align-items: center; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); }
.legal-strip__inner b { color: var(--ink-soft); font-weight: 600; font-family: var(--font-ar); }
.legal-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); flex-shrink: 0; }
.trust-bar { padding: 22px 0; }
.trust-bar__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.trust-bar__text { font-size: 14px; color: var(--ink-soft); }
.city-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.city-chip { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink); border: 1px solid var(--line); padding: 6px 14px; border-radius: 100px; display: flex; align-items: center; gap: 6px; background: var(--paper-raised); }
.city-chip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }

/* ---------- why-band (trust stats, repeated on every service page) ---------- */
.why-band { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--brand-deepest); border-radius: var(--radius); padding: 30px 10px; margin: 8px 0 48px; }
.why-band__item { text-align: center; padding: 0 10px; border-inline-start: 1px solid rgba(255,255,255,.12); }
.why-band__item:first-child { border-inline-start: none; }
.why-band__item b { display: block; font-family: var(--font-mono); font-size: 20px; color: #fff; font-weight: 700; margin-bottom: 4px; }
.why-band__item span { font-size: 12px; color: #b7c3de; }
@media (max-width: 700px) { .why-band { grid-template-columns: 1fr 1fr; gap: 18px 0; } .why-band__item { border-inline-start: none; } }

.card-go { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--brand); }

/* ---------- about timeline ---------- */
.about-timeline { list-style: none; margin: 0; padding: 0; border-inline-start: 2px solid var(--line); }
.about-timeline li { position: relative; padding: 0 0 28px; padding-inline-start: 26px; display: flex; flex-direction: column; gap: 3px; }
.about-timeline li:last-child { padding-bottom: 0; }
.about-timeline li::before { content: ""; position: absolute; inset-inline-start: -7px; top: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--paper-raised); border: 2.5px solid var(--brand); }
.about-timeline__year { font-size: 12px; color: var(--brand-dark); font-weight: 700; }
.about-timeline__title { font-weight: 700; font-size: 15px; color: var(--ink); }
.about-timeline__body { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- status dot (live/pulse indicator) ---------- */
.status-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand); box-shadow: 0 0 0 0 rgba(11, 79, 191, .5); animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(11,79,191,.45); } 70% { box-shadow: 0 0 0 7px rgba(11,79,191,0); } 100% { box-shadow: 0 0 0 0 rgba(11,79,191,0); } }
.phone-chip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 13px; color: var(--brand-dark); }

/* ---------- hero coverage radar panel ---------- */
.radar-panel { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 20px; padding: 22px; box-shadow: var(--shadow); }
.radar-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.radar-title { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); letter-spacing: .06em; }
.radar-live { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10.5px; color: var(--brand); }
.radar-stage { position: relative; height: 250px; display: flex; align-items: center; justify-content: center; }
.radar-rings { position: relative; width: 210px; height: 210px; border-radius: 50%; }
.radar-rings::before, .radar-rings::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid var(--line); }
.radar-rings::before { inset: 0; }
.radar-rings::after { inset: 34px; }
.radar-ring-inner { position: absolute; inset: 68px; border-radius: 50%; border: 1px solid var(--line); }
.radar-sweep { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; background: conic-gradient(from 0deg, rgba(11,79,191,.22), transparent 26%); animation: sweep 5s linear infinite; }
@keyframes sweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.radar-core { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 13px; height: 13px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 6px var(--brand-soft); }
.radar-node { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #fff; border: 1.5px solid var(--gold); }
.radar-node.pulse { animation: node-pulse 2.4s ease-in-out infinite; }
@keyframes node-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.radar-label { position: absolute; font-family: var(--font-mono); font-size: 9.5px; color: var(--ink-soft); white-space: nowrap; }
.radar-readouts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.readout { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 10px; padding: 11px 13px; }
.readout .rlabel { font-family: var(--font-mono); font-size: 9.5px; color: var(--ink-faint); letter-spacing: .04em; margin-bottom: 5px; display: block; }
.readout .rvalue { font-family: var(--font-mono); font-size: 14px; color: var(--brand-dark); font-weight: 700; }
.readout .rvalue.gold { color: var(--gold); }
@media (max-width: 640px) { .radar-panel { display: none; } }
@media (prefers-reduced-motion: reduce) { .status-dot, .radar-sweep, .radar-node.pulse { animation: none !important; } }

/* ---------- pillar gauge rings ---------- */
.card__icon--gauge { position: relative; background: none; width: 56px; height: 56px; }
.card__icon--gauge svg.gauge-ring { position: absolute; inset: 0; transform: rotate(-90deg); }
.card__icon--gauge .gauge-track { fill: none; stroke: var(--line); stroke-width: 4; }
.card__icon--gauge .gauge-fill { fill: none; stroke: var(--gold); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 151; }
.card__icon--gauge .gauge-icon-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--brand); }

/* ---------- full breadcrumb trail on service pages ---------- */
.svc-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-faint); margin-bottom: 18px; }
.svc-breadcrumb a:hover { color: var(--brand); }
.svc-breadcrumb .sep { opacity: .5; }
