.elementor-11813 .elementor-element.elementor-element-297fc323{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS *//* Compliance badge strip — healthcare unique */
.compliance-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--r-full);
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.compliance-badge svg { stroke: var(--teal); flex-shrink: 0; }


/*
 * ═══════════════════════════════════════════════════════════════
 *  MOBILIA® — SERVICE PAGES GLOBAL CSS
 *  File: mobilia-service-global.css
 *  Applies to: All 12 industry/service pages
 *  Font: Outfit (loaded via Google Fonts in each HTML file)
 *  Last updated: 2024
 * ═══════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════
   1. DESIGN TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
/* Internal link colour — red across all components */
--link:        #C0392B;
--link-under:  #FADBD8;
  --teal-mid:     #14A0A6;
  --teal    :     #008080;
  --teal-light:   #D4F0F1;
  --teal-pale:    #EEF9FA;
  --black:        #111111;
  --ink:          #1E1E1E;
  --ink-2:        #3A3A3A;
  --grey-mid:     #6B6B6B;
  --grey-light:   #9E9E9E;
  --grey-border:  #E4E4E4;
  --grey-bg:      #F7F7F7;
  --grey-pale:    #FAFAFA;
  --white:        #FFFFFF;
  --red-warn:     #B45309;

  /* Typography */
  --font:         'Outfit', sans-serif;

  /* Layout */
  --page-width:   85%;
  --page-max:     100%;

  /* Radii */
  --r:            8px;
  --r-sm:         4px;
  --r-full:       100px;

  /* Shadows */
  --sh-sm:        0 1px 4px rgba(0,0,0,0.06);
  --sh:           0 4px 16px rgba(0,0,0,0.08);
  --sh-md:        0 8px 32px rgba(0,0,0,0.1);

  /* Transitions */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════════════════════════════════════════════════════════
   2. RESET
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; display: block; }
ul   { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ═══════════════════════════════════════════════════════════════
   3. LAYOUT UTILITIES
═══════════════════════════════════════════════════════════════ */
.wrap {
  width: var(--page-width);
  max-width: var(--page-max);
  margin: 0 auto;
}
.sec           { padding: 80px 0; }
.sec--bg       { background: var(--grey-pale); }
.sec--teal-pale{ background: var(--teal-pale); }
.sec--white    { background: var(--white); }

/* ═══════════════════════════════════════════════════════════════
   4. TYPOGRAPHY
═══════════════════════════════════════════════════════════════ */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow--center::before,
.eyebrow--center::after {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--teal);
}

.h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -1.8px;
  color: var(--black);
  margin-bottom: 20px;
}
.h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--black);
  margin-bottom: 14px;
}
.h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
}
.lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.75;
  max-width: 100%;
}
.body-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.82;
  margin-bottom: 16px;
}
.body-text:last-child { margin-bottom: 0; }
.body-text strong     { font-weight: 600; color: var(--black); }
.body-text a          { color: #C0392B; border-bottom: 1px solid #FADBD8; transition: border-color .2s; }
.body-text a:hover    { border-color: #C0392B; }

.teal-txt { color: var(--teal); }
.inline-link {
  color: #C0392B;
  border-bottom: 1px solid #FADBD8;
  transition: border-color .2s;
}
.inline-link:hover { border-color: #C0392B; }

/* ═══════════════════════════════════════════════════════════════
   5. BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  transition: all .2s var(--ease);
  cursor: pointer;
  letter-spacing: .1px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: #085558;
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1.5px solid var(--grey-border);
  color: var(--ink-2);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.btn-white {
  background: var(--white);
  color: var(--teal);
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  transition: opacity .2s;
}
.btn-white:hover { opacity: .9; }
.btn-ghost-white {
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  transition: border-color .2s;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.85); }

/* ═══════════════════════════════════════════════════════════════
   6. IMAGE COMPONENT
   Usage: <img src="IMAGE_URL_HERE" alt="SEO_ALT_TEXT_HERE"
               class="svc-img svc-img--hero" loading="lazy">
   Sizes: --hero / --lg / --md / --sm
═══════════════════════════════════════════════════════════════ */
.svc-img {
  height: 300px;
  display: block;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--grey-border);
}
.svc-img--hero  { height: 480px; border-radius: var(--r); border-bottom: none; }
.svc-img--lg    { height: 340px; }
.svc-img--md    { height: 240px; }
.svc-img--sm    { height: 300px; }

/* Image stack — two images stacked vertically with gap */
.img-stack { display: flex; flex-direction: column; gap: 14px; }

/* ═══════════════════════════════════════════════════════════════
   7. NAVIGATION
═══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-border);
  transition: box-shadow .2s;
}
.nav__inner {
  width: var(--page-width);
  max-width: var(--page-max);
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--black);
}
.nav__logo sup {
  font-size: 10px;
  font-weight: 400;
  color: var(--grey-light);
  vertical-align: super;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--grey-mid);
  transition: color .2s;
}
.nav__links a:hover { color: var(--black); }
.nav__cta {
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  transition: background .2s;
}
.nav__cta:hover { background: #085558; }

/* ═══════════════════════════════════════════════════════════════
   8. BREADCRUMB
═══════════════════════════════════════════════════════════════ */
.breadcrumb {
  background: var(--grey-bg);
  border-bottom: 1px solid var(--grey-border);
  padding: 12px 0;
}
.breadcrumb__inner {
  width: var(--page-width);
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb__inner a,
.breadcrumb__inner span { font-size: 12.5px; color: var(--grey-mid); }
.breadcrumb__inner a:hover { color: var(--teal); }
.breadcrumb__inner .bc-sep  { color: var(--grey-border); }
.breadcrumb__inner .bc-cur  { color: var(--ink-2); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   9. HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--white);
  padding: 64px 0 0;
  border-bottom: 1px solid var(--grey-border);
}
.hero__grid {
  width: var(--page-width);
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-pale);
  border: 1px solid var(--teal-light);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
}
.hero__tag-dot {
  width: 6px;
  height: 6px;
  background: var(--teal-mid);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}
.hero__desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.75;
  max-width: 100%;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--grey-border);
  padding-top: 32px;
  padding-bottom: 48px;
}
.trust-item {
  padding-right: 24px;
  border-right: 1px solid var(--grey-border);
}
.trust-item:last-child { border-right: none; padding-right: 0; }
.trust-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -1px;
}
.trust-num span { color: var(--teal); }
.trust-lbl {
  font-size: 11.5px;
  color: var(--grey-light);
  margin-top: 4px;
  line-height: 1.4;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════
   10. STRIP (teal bar below hero)
═══════════════════════════════════════════════════════════════ */
.strip {
  background: var(--teal);
  padding: 20px 0;
}
.strip__inner {
  width: var(--page-width);
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.strip__item:first-child { padding-left: 0; }
.strip__item:last-child  { border-right: none; }
.strip__icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   11. ZONE CARDS (What We Supply — 3 column grid)
═══════════════════════════════════════════════════════════════ */
.zones-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 48px;
}
.zones-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1px;
  background: var(--grey-border);
  border: 1px solid var(--grey-border);
  border-radius: var(--r);
  overflow: hidden;
}
.zone-card {
  background: var(--white);
  padding: 28px 24px;
  transition: background .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.zone-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.zone-card:hover             { background: var(--teal-pale); }
.zone-card:hover::after      { transform: scaleX(1); }
.zone-card__icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.zone-card__icon svg { stroke: var(--teal); }
.zone-card__title {
  font-size: 1.25rem;;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: -.2px;
}
.zone-card__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.65;
}
.zone-card__text a   { color: #C0392B; border-bottom: 1px solid #FADBD8; transition: border-color .2s; }
.zone-card__text a:hover { border-color: #C0392B; }
.inst-card__text a   { color: #C0392B; border-bottom: 1px solid #FADBD8; transition: border-color .2s; }
.inst-card__text a:hover { border-color: #C0392B; }

/* ═══════════════════════════════════════════════════════════════
   12. INSTITUTION CARDS (2 column grid)
═══════════════════════════════════════════════════════════════ */
.inst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.inst-card {
  border: 1.5px solid var(--grey-border);
  border-radius: var(--r);
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .2s, box-shadow .2s;
}
.inst-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--sh-sm);
}
.inst-icon {
  width: 40px;
  height: 40px;
  background: var(--grey-bg);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--grey-border);
}
.inst-icon svg    { stroke: var(--ink-2); }
.inst-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
}
.inst-card__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   13. TWO COLUMN LAYOUT
═══════════════════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col--center { align-items: center; }
.two-col--flip .col-a { order: 2; }
.two-col--flip .col-b { order: 1; }

/* ═══════════════════════════════════════════════════════════════
   14. WHY SECTION
═══════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-list { margin-top: 28px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-border);
  align-items: flex-start;
}
.why-item:last-child { border-bottom: none; }
.why-check {
  width: 24px;
  height: 24px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check svg       { stroke: var(--white); }
.why-item__title     { font-size: 1.25rem; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.why-item__text      { font-size: 1rem; font-weight: 300; color: var(--black); line-height: 1.6; }
.why-item__text a    { color: #C0392B; border-bottom: 1px solid #FADBD8; }

/* ═══════════════════════════════════════════════════════════════
   15. STATS QUAD
═══════════════════════════════════════════════════════════════ */
.stats-quad {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.stat-box {
  border: 1.5px solid var(--grey-border);
  border-radius: var(--r);
  padding: 26px 22px;
  background: var(--white);
}
.stat-box--teal      { background: var(--teal); border-color: var(--teal); }
.stat-box--dark      { background: var(--black); border-color: var(--black); }
.stat-box--teal .stat-num,
.stat-box--teal .stat-lbl   { color: var(--white); }
.stat-box--teal .stat-lbl   { color: rgba(255,255,255,.65) !important; }
.stat-box--dark .stat-num   { color: var(--white); }
.stat-box--dark .stat-lbl   { color: rgba(255,255,255,.5) !important; }
.stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 5px;
}
.stat-lbl { font-size: 12.5px; color: var(--grey-mid); line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════════
   16. COMPARISON TABLE
═══════════════════════════════════════════════════════════════ */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--grey-border);
  margin-top: 28px;
}
.cmp-table th {
  background: var(--black);
  color: var(--white);
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  letter-spacing: .2px;
}
.cmp-table td {
  padding: 13px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--grey-border);
  color: var(--ink-2);
  font-weight: 300;
  line-height: 1.5;
  vertical-align: top;
}
.cmp-table tr:last-child td             { border-bottom: none; }
.cmp-table tr:nth-child(even) td        { background: var(--grey-pale); }
.cmp-table .cell-wrong                  { color: #991B1B; }
.cmp-table .cell-right                  { color: var(--teal); font-weight: 500; }
.cmp-table td:first-child               { font-weight: 600; color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════
   17. PROCESS STEPS
═══════════════════════════════════════════════════════════════ */
.proc-wrap {
  text-align: center;
  max-width: 90%;
  margin: 0 auto 56px;
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: 0;
}
.proc-line {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--grey-border);
}
.proc-step {
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.proc-num {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 18px;
  font-weight: 800;
  color: var(--teal);
  box-shadow: 0 0 0 5px var(--teal-pale);
  transition: all .25s var(--ease);
}
.proc-step:hover .proc-num  { background: var(--teal); color: var(--white); }
.proc-step__title           { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.proc-step__text            { font-size: 0.85rem; font-weight: 300; color: var(--black); line-height: 1.6; }
.proc-step__text a          { color: #C0392B; border-bottom: 1px solid #FADBD8; }

/* ═══════════════════════════════════════════════════════════════
   18. INFO BOX
═══════════════════════════════════════════════════════════════ */
.info-box {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.info-box p {
  font-size: 14.5px;
  color: #085558;
  font-weight: 400;
  line-height: 1.65;
}
.info-box p strong { font-weight: 700; }
.info-box p a      { color: #C0392B; border-bottom: 1px solid #FADBD8; }

/* ═══════════════════════════════════════════════════════════════
   19. TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 44px;
}
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--r);
  padding: 30px 26px;
  transition: border-color .2s, box-shadow .2s;
}
.testi-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--sh-sm);
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testi-star {
  width: 13px;
  height: 13px;
  background: #F59E0B;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.testi-quote {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 22px;
  padding-top: 10px;
  border-top: 1px solid var(--grey-border);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 38px;
  height: 38px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--teal);
  flex-shrink: 0;
}
.testi-name      { font-size: 13.5px; font-weight: 700; color: var(--black); }
.testi-role      { font-size: 12px; color: var(--grey-light); }
.testi-warn      { font-size: 11px; font-weight: 500; color: var(--red-warn); margin-top: 3px; }

/* ═══════════════════════════════════════════════════════════════
   20. FAQ ACCORDION
═══════════════════════════════════════════════════════════════ */
.faq-list { max-width: 100%; margin-top: 44px; }
.faq-item { border-bottom: 1px solid var(--grey-border); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: color .2s;
}
.faq-btn:hover             { color: var(--teal); }
.faq-icon {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--grey-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--grey-mid);
  line-height: 1;
  transition: all .25s var(--ease);
}
.faq-item.open .faq-icon   { background: var(--teal); border-color: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.8;
  max-width: 100%;
}
.faq-answer a              { color: #C0392B; border-bottom: 1px solid #FADBD8; }
.faq-item.open .faq-answer { display: block; }

/* ═══════════════════════════════════════════════════════════════
   21. LOCATION TAGS
═══════════════════════════════════════════════════════════════ */
.loc-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.loc-tag {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--r-sm);
  padding: 7px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: all .2s;
}
.loc-tag:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); }

/* ═══════════════════════════════════════════════════════════════
   22. RELATED SERVICES GRID
═══════════════════════════════════════════════════════════════ */
.rel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.rel-card {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--r);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all .2s var(--ease);
}
.rel-card:hover { border-color: var(--teal); box-shadow: var(--sh); transform: translateY(-2px); }
.rel-icon {
  width: 38px;
  height: 38px;
  background: var(--grey-bg);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-border);
}
.rel-icon svg          { stroke: var(--ink-2); }
.rel-card__title       { font-size: 1rem; font-weight: 700; color: var(--black); line-height: 1.35; }
.rel-card__text        { font-size: 1rem; color: var(--black); line-height: 1.5; font-weight: 300; flex: 1; }
.rel-arrow {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.rel-card:hover .rel-arrow { gap: 8px; }

/* ═══════════════════════════════════════════════════════════════
   23. CTA BANNER
═══════════════════════════════════════════════════════════════ */
.cta-banner            { background: var(--teal); padding: 64px 0; }
.cta-banner__inner {
  width: var(--page-width);
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.cta-banner p          { font-size: 15.5px; color: rgba(255,255,255,.75); font-weight: 300; }
.cta-banner__actions   { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   24. FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--grey-bg);
  border-top: 1px solid var(--grey-border);
  padding: 52px 0 26px;
}
.footer__grid {
  width: var(--page-width);
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--grey-border);
}
.footer__logo     { font-size: 20px; font-weight: 800; color: var(--black); letter-spacing: -.5px; margin-bottom: 10px; }
.footer__logo sup { font-size: 10px; font-weight: 400; color: var(--grey-light); vertical-align: super; }
.footer__tagline  { font-size: 13px; color: var(--grey-mid); line-height: 1.7; margin-bottom: 16px; max-width: 240px; font-weight: 300; }
.footer__contact  { font-size: 13px; color: var(--grey-mid); line-height: 1.9; font-weight: 300; }
.footer__col h4   { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--grey-light); margin-bottom: 14px; }
.footer__col li a { font-size: 13px; color: var(--grey-mid); font-weight: 300; transition: color .2s; display: block; padding: 3px 0; }
.footer__col li a:hover { color: var(--teal); }
.footer__bottom {
  width: var(--page-width);
  max-width: var(--page-max);
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy  { font-size: 12px; color: var(--grey-light); font-weight: 300; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: var(--grey-light); transition: color .2s; }
.footer__legal a:hover { color: var(--teal); }

/* ═══════════════════════════════════════════════════════════════
   25. SCROLL REVEAL
═══════════════════════════════════════════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════════════════════
   26. PAGE-SPECIFIC UNIQUE SECTION CLASSES
   One unique section per service page — keeps pages visually
   distinct while sharing the same global stylesheet.
   Add new blocks here as new pages are created.
═══════════════════════════════════════════════════════════════ */

/* ── Education: Comparison Table Block (already in global above) ── */
/* Uses .cmp-table — no extra class needed */

/* ── Healthcare: Compliance Spec Block ── */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.spec-card {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--r);
  padding: 24px 20px;
  transition: border-color .2s, box-shadow .2s;
}
.spec-card:hover { border-color: var(--teal-light); box-shadow: var(--sh-sm); }
.spec-card__badge {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.spec-card__title { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.spec-card__text  { font-size: 1rem; font-weight: 300; color: var(--black); line-height: 1.6; }

/* ── Legal: Prestige Zone Cards (horizontal scroll) ── */
.prestige-scroll {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-top: 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--grey-border) transparent;
}
.prestige-card {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--r);
  padding: 24px 22px;
  min-width: 220px;
  flex-shrink: 0;
  transition: border-color .2s;
}
.prestige-card:hover          { border-color: var(--teal); }
.prestige-card__zone          { font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.prestige-card__title         { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.prestige-card__text          { font-size: 0.95rem; font-weight: 300; color: var(--black); line-height: 1.75; }

/* ── Government: Procurement Callout ── */
.procurement-box {
  background: var(--grey-pale);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--r);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.procurement-item__label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.procurement-item__value { font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.procurement-item__note  { font-size: 12.5px; font-weight: 300; color: var(--grey-mid); line-height: 1.5; }

/* ── Corporate: Project Scale Timeline ── */
.scale-bar {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scale-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 16px;
}
.scale-label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.scale-track { height: 8px; background: var(--grey-border); border-radius: 4px; overflow: hidden; }
.scale-fill  { height: 100%; background: var(--teal); border-radius: 4px; }
.scale-val   { font-size: 13px; font-weight: 700; color: var(--teal); white-space: nowrap; }

/* ── Co-Working: Layout Config Cards ── */
.config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.config-card {
  border: 1.5px solid var(--grey-border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s;
}
.config-card:hover              { border-color: var(--teal); }
.config-card__head {
  background: var(--teal-pale);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.config-card__head-title        { font-size: 1rem; font-weight: 700; color: var(--black); }
.config-card__body              { padding: 16px 18px; }
.config-card__list li {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey-mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-border);
  line-height: 1.5;
}
.config-card__list li:last-child { border-bottom: none; }

/* ── Tech & IT: Power/Cable Grid ── */
.power-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.power-item {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--r);
  padding: 20px 16px;
  text-align: center;
  transition: border-color .2s;
}
.power-item:hover            { border-color: var(--teal-light); }
.power-item svg              { margin: 0 auto 10px; stroke: var(--teal); }
.power-item__title           { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.power-item__text            { font-size: 12px; font-weight: 300; color: var(--grey-mid); line-height: 1.5; }

/* ── Logistics: Durability Rating Block ── */
.durability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.durability-card {
  border: 1.5px solid var(--grey-border);
  border-radius: var(--r);
  padding: 24px 20px;
  background: var(--white);
}
.durability-card__rating {
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.durability-card__label  { font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--grey-light); margin-bottom: 10px; }
.durability-card__text   { font-size: 13px; font-weight: 300; color: var(--grey-mid); line-height: 1.6; }

/* ── Hospitality: Zone Visual Breakdown ── */
.hosp-zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-border);
  border: 1px solid var(--grey-border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 32px;
}
.hosp-zone {
  background: var(--white);
  padding: 24px 18px;
  transition: background .2s;
}
.hosp-zone:hover              { background: var(--teal-pale); }
.hosp-zone__icon              { font-size: 22px; margin-bottom: 10px; }
.hosp-zone__title             { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.hosp-zone__text              { font-size: 12.5px; font-weight: 300; color: var(--grey-mid); line-height: 1.55; }

/* ── Bank & Call Center: Density Callout ── */
.density-box {
  background: var(--teal-pale);
  border: 1.5px solid var(--teal-light);
  border-radius: var(--r);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  text-align: center;
}
.density-item__num   { font-size: 36px; font-weight: 800; color: var(--teal); letter-spacing: -1.5px; line-height: 1; margin-bottom: 6px; }
.density-item__label { font-size: 12px; font-weight: 600; color: var(--grey-mid); letter-spacing: .5px; text-transform: uppercase; }

/* ── Media & Creative: Colour Palette Block ── */
.palette-grid {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.palette-swatch {
  flex: 1;
  min-width: 100px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--grey-border);
}
.palette-swatch__color        { height: 80px; }
.palette-swatch__label        { padding: 10px 12px; background: var(--white); font-size: 12px; font-weight: 600; color: var(--ink-2); }
.palette-swatch__sub          { font-size: 11px; font-weight: 300; color: var(--grey-light); }

/* ── Real Estate: District Grid ── */
.district-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.district-card {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--r);
  padding: 20px 16px;
  transition: border-color .2s, box-shadow .2s;
}
.district-card:hover               { border-color: var(--teal); box-shadow: var(--sh-sm); }
.district-card__name               { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.district-card__desc               { font-size: 12px; font-weight: 300; color: var(--grey-mid); line-height: 1.5; }
.district-card__tag {
  display: inline-block;
  margin-top: 8px;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-full);
}

/* ═══════════════════════════════════════════════════════════════
   27. GLOBAL JAVASCRIPT (inline in each HTML file)
   Shared JS functions — paste into <script> tag in every page.

   function faqToggle(btn) {
     const item = btn.closest('.faq-item');
     const open = item.classList.contains('open');
     document.querySelectorAll('.faq-item.open').forEach(el => {
       el.classList.remove('open');
       el.querySelector('.faq-btn').setAttribute('aria-expanded','false');
     });
     if (!open) {
       item.classList.add('open');
       btn.setAttribute('aria-expanded','true');
     }
   }
   const revealObs = new IntersectionObserver(entries => {
     entries.forEach(e => {
       if (e.isIntersecting) { e.target.classList.add('in'); revealObs.unobserve(e.target); }
     });
   }, { threshold: .08, rootMargin: '0px 0px -36px 0px' });
   document.querySelectorAll('.rv').forEach(el => revealObs.observe(el));
   window.addEventListener('scroll', () => {
     document.querySelector('.nav').style.boxShadow =
       scrollY > 10 ? '0 2px 16px rgba(0,0,0,0.07)' : 'none';
   }, { passive: true });
═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   28. RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__grid          { grid-template-columns: 1fr; }
  .hero__img-col       { display: none; }
  .zones-top           { grid-template-columns: 1fr; }
  .zones-grid          { grid-template-columns: 1fr 1fr; }
  .two-col             { grid-template-columns: 1fr; gap: 36px; }
  .two-col--flip .col-a,
  .two-col--flip .col-b{ order: unset; }
  .inst-grid           { grid-template-columns: 1fr; }
  .why-grid            { grid-template-columns: 1fr; gap: 40px; }
  .proc-grid           { grid-template-columns: 1fr 1fr; gap: 28px; }
  .proc-line           { display: none; }
  .testi-grid          { grid-template-columns: 1fr; }
  .rel-grid            { grid-template-columns: 1fr 1fr; }
  .footer__grid        { grid-template-columns: 1fr 1fr; gap: 28px; }
  .spec-grid           { grid-template-columns: 1fr 1fr; }
  .config-grid         { grid-template-columns: 1fr 1fr; }
  .power-grid          { grid-template-columns: 1fr 1fr; }
  .durability-grid     { grid-template-columns: 1fr 1fr; }
  .hosp-zones          { grid-template-columns: 1fr 1fr; }
  .procurement-box     { grid-template-columns: 1fr 1fr; }
  .density-box         { grid-template-columns: 1fr; }
  .district-grid       { grid-template-columns: 1fr 1fr; }
  .scale-row           { grid-template-columns: 120px 1fr auto; }
  .stats-quad          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__links          { display: none; }
  .sec                 { padding: 56px 0; }
  .hero__trust         { grid-template-columns: 1fr 1fr; }
  .strip__inner        { grid-template-columns: 1fr 1fr; }
  .strip__item         { border-right: none; padding: 8px 14px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .strip__item:nth-child(3),
  .strip__item:nth-child(4){ border-bottom: none; }
  .zones-grid          { grid-template-columns: 1fr; }
  .stats-quad          { grid-template-columns: 1fr; }
  .rel-grid            { grid-template-columns: 1fr; }
  .footer__grid        { grid-template-columns: 1fr; }
  .cta-banner__inner   { flex-direction: column; align-items: flex-start; }
  .proc-grid           { grid-template-columns: 1fr; }
  .spec-grid           { grid-template-columns: 1fr; }
  .config-grid         { grid-template-columns: 1fr; }
  .power-grid          { grid-template-columns: 1fr 1fr; }
  .durability-grid     { grid-template-columns: 1fr; }
  .hosp-zones          { grid-template-columns: 1fr 1fr; }
  .procurement-box     { grid-template-columns: 1fr; }
  .district-grid       { grid-template-columns: 1fr 1fr; }
  .prestige-scroll     { padding-bottom: 12px; }
  .scale-row           { grid-template-columns: 1fr; gap: 6px; }
  .palette-grid        { flex-direction: column; }
}/* End custom CSS */