.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0; }

      /* ── Hero service tab strip (Option 1) ── */
      .svc-hero-tabs {
        display: flex; flex-wrap: wrap; gap: 8px;
        justify-content: center; margin-top: 28px;
      }
      .svc-hero-tab {
        display: inline-flex; align-items: center; gap: 7px;
        padding: 7px 16px;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.16);
        border-radius: 100px; cursor: pointer;
        font-family: var(--font); font-size: 12px; font-weight: 600;
        color: rgba(255,255,255,0.88);
        text-decoration: none;
        backdrop-filter: blur(8px);
        transition: all .22s ease;
      }
      .svc-hero-tab i { font-size: 10px; color: #60c4f0; }
      .svc-hero-tab:hover, .svc-hero-tab:focus-visible {
        background: rgba(96,196,240,0.18);
        border-color: rgba(96,196,240,0.45);
        color: #fff; transform: translateY(-1px);
        outline: none;
      }
      .svc-hero-tab:focus-visible { outline: 2px solid #60c4f0; outline-offset: 2px; }

      /* ── USP strip (Option 2 — static USPs) ── */
      .svc-usp-strip {
        display: flex; flex-wrap: wrap; gap: 8px;
        justify-content: center;
        margin-top: 20px; padding-top: 18px;
        border-top: 1px solid rgba(255,255,255,0.09);
      }
      .svc-usp-chip {
        display: inline-flex; align-items: center; gap: 5px;
        padding: 5px 13px;
        background: rgba(96,196,240,0.09);
        border: 1px solid rgba(96,196,240,0.22);
        border-radius: 100px;
        font-size: 11px; font-weight: 700;
        color: #60c4f0; letter-spacing: .02em;
      }
      .svc-usp-chip i { font-size: 9px; }
      a.svc-usp-chip {
        text-decoration: none;
        background: rgba(227,76,76,0.15);
        border-color: rgba(227,76,76,0.35);
        color: #ff7070;
        transition: opacity .2s;
      }
      a.svc-usp-chip:hover { opacity: .85; }

      /* ── H2 section: visibility-gap callout box ── */
      .svc-gap-box {
        margin-top: 22px;
        padding: 18px 20px;
        background: rgba(0,69,103,0.04);
        border-left: 3px solid #60c4f0;
        border-radius: 0 8px 8px 0;
      }
      .svc-gap-label {
        display: flex; align-items: center; gap: 7px;
        font-size: 13.5px; font-weight: 700;
        color: var(--primary); margin-bottom: 9px;
      }
      .svc-gap-box p { font-size: 14.5px; color: var(--text); line-height: 1.75; margin: 0 0 8px; }
      .svc-gap-box p:last-child { margin: 0; }

      /* ── Services section header ── */
      .svc-map-intro {
        text-align: center; max-width: 760px; margin: 0 auto 52px;
      }
      .svc-map-intro h3 { margin-bottom: 0; }

      /* ── Services 2-col image grid ── */
      .svc2-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        max-width: 1120px;
        margin: 0 auto;
      }

      /* Base card */
      .svc2-card {
        display: flex; flex-direction: column;
        background: #fff;
        border-radius: 20px; overflow: hidden;
        box-shadow: 0 4px 24px rgba(0,69,103,0.09);
        border: 1px solid rgba(0,69,103,0.07);
        text-decoration: none; color: inherit;
        transition: transform .28s ease, box-shadow .28s ease;
      }
      .svc2-card:hover { transform: translateY(-8px); box-shadow: 0 22px 56px rgba(0,69,103,0.15); text-decoration: none; }
      .svc2-card:focus-visible { outline: 2px solid #60c4f0; outline-offset: 3px; border-radius: 20px; }

      /* Image area */
      .svc2-img-wrap {
        position: relative; height: 240px; overflow: hidden; flex-shrink: 0;
      }
      .svc2-img-wrap img {
        width: 100%; height: 100%; object-fit: cover;
        transition: transform .5s ease;
        display: block;
      }
      .svc2-card:hover .svc2-img-wrap img { transform: scale(1.06); }
      .svc2-img-overlay {
        position: absolute; inset: 0;
        background: linear-gradient(180deg, rgba(6,44,53,0.05) 0%, rgba(6,44,53,0.52) 100%);
      }
      .svc2-icon {
        position: absolute; bottom: 16px; left: 20px;
        width: 52px; height: 52px; border-radius: 14px;
        background: #fff;
        display: flex; align-items: center; justify-content: center;
        font-size: 22px;
        box-shadow: 0 4px 18px rgba(0,0,0,0.14);
        transition: transform .28s ease;
        z-index: 1;
      }
      .svc2-card:hover .svc2-icon { transform: scale(1.1) translateY(-3px); }
      .svc2-cat {
        position: absolute; top: 14px; right: 14px;
        font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
        padding: 5px 12px; border-radius: 100px;
        background: rgba(6,44,53,0.68); color: rgba(255,255,255,0.92);
        backdrop-filter: blur(8px);
        z-index: 1;
      }

      /* Card body */
      .svc2-body {
        padding: 22px 26px 28px;
        display: flex; flex-direction: column; flex: 1; gap: 10px;
      }
      .svc2-name {
        font-size: 19px; font-weight: 800;
        color: var(--dark-navy); line-height: 1.3; margin: 0;
      }
      .svc2-tagline {
        font-size: 14.5px; color: rgba(6,44,53,0.62);
        line-height: 1.72; flex: 1; margin: 0;
      }
      .svc2-lm {
        display: inline-flex; align-items: center; gap: 6px;
        font-size: 11.5px; font-weight: 800; color: var(--primary);
        text-transform: uppercase; letter-spacing: .07em; margin-top: 6px;
      }
      .svc2-lm i { font-size: 10px; transition: transform .2s; }
      .svc2-card:hover .svc2-lm i { transform: translateX(4px); }

      /* Featured card — spans 2 cols, horizontal layout */
      .svc2-card--feat {
        grid-column: span 2;
        flex-direction: row;
        background: linear-gradient(130deg, #062c35 0%, #004567 100%);
        border-color: rgba(96,196,240,0.18);
      }
      .svc2-card--feat .svc2-img-wrap { width: 42%; height: auto; flex-shrink: 0; }
      .svc2-card--feat .svc2-body { padding: 40px 44px; justify-content: center; }
      .svc2-card--feat .svc2-name { color: #fff; font-size: 26px; }
      .svc2-card--feat .svc2-tagline { color: rgba(255,255,255,0.68); font-size: 15.5px; }
      .svc2-card--feat .svc2-lm { color: #60c4f0; }
      .svc2-card--feat .svc2-cat {
        background: rgba(96,196,240,0.22); color: #7fd9f8;
        border: 1px solid rgba(96,196,240,0.32);
      }
      .svc2-feat-badge {
        display: inline-flex; align-items: center; gap: 6px;
        font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
        color: #60c4f0; margin-bottom: 14px;
      }
      .svc2-feat-badge i { font-size: 10px; }
      .svc2-feat-stats {
        display: flex; gap: 28px; margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.10);
      }
      .svc2-feat-stat strong { display: block; font-size: 22px; font-weight: 800; color: #60c4f0; }
      .svc2-feat-stat span { font-size: 12px; color: rgba(255,255,255,0.55); }

      /* ── Responsive ── */
      @media (max-width: 860px) {
        /* 1-col grid; align-items:start stops rows from equalising heights */
        .svc2-wrap { grid-template-columns: 1fr; gap: 20px; align-items: start; }
        /* Reset flex-grow so body/tagline shrink to content — no gap before Learn More */
        .svc2-body { flex: 0 0 auto; }
        .svc2-tagline { flex: none; }
        /* Featured card: reset grid-column:span 2 — otherwise it forces an implicit
           2nd column and all cards revert to a 2-col equal-height layout */
        .svc2-card--feat { flex-direction: column; grid-column: span 1; }
        .svc2-card--feat .svc2-img-wrap { width: 100%; height: 220px; }
        .svc2-card--feat .svc2-body { padding: 26px 26px 30px; }
        .svc2-card--feat .svc2-name { font-size: 21px; }
      }
      @media (max-width: 600px) {
        .svc-map-intro { margin-bottom: 24px; }
        .svc2-feat-stats { gap: 14px; flex-wrap: wrap; }
        .svc2-feat-stat strong { font-size: 18px; }
      }
      @media (max-width: 560px) {
        .svc2-img-wrap { height: 190px; }
        .svc-hero-tabs { gap: 7px; margin-top: 20px; }
        .svc-hero-tab  { font-size: 11px; padding: 6px 13px; }
        .svc2-body { padding: 18px 18px 22px; }
        .svc2-name { font-size: 17px; }
      }

      /* ── nav-svc-link ── */
      .nav-svc-link { color: inherit; text-decoration: none; }
      .nav-svc-link:hover { color: inherit; }