/* ==========================================================================
   Delta Networks , components for the pages added from the Rev.01 site map
   (/projects, /industries, /privacy, /terms)

   Loaded after main.css and before mobile-first-fixes.css, so the mobile layer
   still has the last word. Built mobile-first: the base rules are the phone
   layout and the min-width blocks add the desktop refinements.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Industries , sector counts and market segments
   -------------------------------------------------------------------------- */

.sector-count {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.1));
  font-size: 0.9375rem;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.sector-count strong {
  font-family: var(--tj-ff-heading, "Manrope", sans-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--tj-color-heading-primary);
  margin-inline-end: 6px;
}

.segment-item {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.1));
  border-radius: 12px;
  background-color: var(--tj-color-theme-bg, transparent);
}

.segment-item .title {
  margin: 0 0 8px;
  font-size: 1.125rem;
}

.segment-item .desc {
  margin: 0;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

@media (min-width: 768px) {
  .segment-item {
    padding: 32px;
  }
}

/* --------------------------------------------------------------------------
   Projects , sector filter bar
   The bar scrolls sideways on a phone rather than wrapping into four rows of
   chips, which is the pattern people already know from app filter bars.
   -------------------------------------------------------------------------- */

.project-filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.project-filter-bar::-webkit-scrollbar {
  display: none;
}

.project-filter-btn {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.12));
  border-radius: 999px;
  background: transparent;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading, "Manrope", sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.project-filter-btn:hover {
  border-color: var(--tj-color-theme-primary, #d3ed31);
}

.project-filter-btn.active {
  background-color: var(--tj-color-theme-primary, #d3ed31);
  border-color: var(--tj-color-theme-primary, #d3ed31);
  color: #050505;
}

@media (min-width: 992px) {
  .project-filter-bar {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 10px;
    margin-bottom: 44px;
  }
}

/* --------------------------------------------------------------------------
   Projects , empty slots
   Deliberately reads as an unfilled placeholder rather than a finished card, so
   nobody mistakes it for a real project record.
   -------------------------------------------------------------------------- */

.project-slot {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px dashed var(--tj-color-border-1, rgba(0, 0, 0, 0.22));
  border-radius: 12px;
  overflow: hidden;
  background-color: transparent;
}

.project-slot-media {
  display: grid;
  place-items: center;
  min-height: 132px;
  background-color: rgba(0, 0, 0, 0.035);
  border-bottom: 1px dashed var(--tj-color-border-1, rgba(0, 0, 0, 0.22));
}

.project-slot-index {
  font-family: var(--tj-ff-heading, "Manrope", sans-serif);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 0, 0, 0.14);
}

.project-slot-body {
  flex: 1 1 auto;
  padding: 24px;
}

.project-slot-body .title {
  margin: 0 0 14px;
  font-size: 1.0625rem;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.project-slot-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-slot-checklist li {
  position: relative;
  padding: 5px 0 5px 20px;
  font-size: 0.9375rem;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.project-slot-checklist li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 14px;
  width: 8px;
  height: 1px;
  background-color: currentColor;
  opacity: 0.55;
}

.project-empty-note {
  margin-top: 20px;
  padding: 28px 24px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.035);
}

.project-empty-note p {
  margin: 0;
  max-width: 62ch;
}

@media (min-width: 768px) {
  .project-empty-note {
    padding: 36px 40px;
  }
}

/* --------------------------------------------------------------------------
   Privacy & Terms
   -------------------------------------------------------------------------- */

.legal-draft-note {
  margin-bottom: 40px;
  padding: 20px 22px;
  border-inline-start: 3px solid var(--tj-color-theme-primary, #d3ed31);
  border-radius: 0 10px 10px 0;
  background-color: rgba(0, 0, 0, 0.04);
}

.legal-draft-note p {
  margin: 0;
  max-width: 68ch;
}

.legal-content {
  max-width: 68ch;
}

.legal-intro {
  font-size: 1.0625rem;
  margin-bottom: 36px;
}

.legal-heading {
  margin: 40px 0 10px;
  font-size: 1.25rem;
}

.legal-heading:first-of-type {
  margin-top: 0;
}

.legal-todo {
  margin: 0;
  padding-inline-start: 16px;
  border-inline-start: 2px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.14));
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.legal-address {
  margin: 0;
  line-height: 1.8;
}

/* The email and phone in the registered-office block are the two things anyone
   actually taps on this page, so they get a real target rather than a 17px
   line of text. */
.legal-address a {
  display: inline-block;
  padding-block: 10px;
}

@media (min-width: 768px) {
  .legal-heading {
    font-size: 1.375rem;
    margin-top: 48px;
  }
}

/* --------------------------------------------------------------------------
   Anchor offset
   The header is sticky, so a jump to services.html#data-centre would otherwise
   land the heading underneath it.
   -------------------------------------------------------------------------- */

[id="structured-cabling"],
[id="fibre-optic"],
[id="data-centre"],
[id="network-infrastructure"],
[id="testing-certification"],
[id="maintenance-amc"] {
  scroll-margin-top: 90px;
}

@media (min-width: 992px) {
  [id="structured-cabling"],
  [id="fibre-optic"],
  [id="data-centre"],
  [id="network-infrastructure"],
  [id="testing-certification"],
  [id="maintenance-amc"] {
    scroll-margin-top: 120px;
  }
}

/* --------------------------------------------------------------------------
   Manufacturer trust strip
   Text tiles standing in for logo artwork until the manufacturers' own files
   are supplied and current authorisations are confirmed.
   -------------------------------------------------------------------------- */

.vendor_item {
  padding-inline: 22px;
}

.vendor_name {
  font-family: var(--tj-ff-heading, "Manrope", sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  color: var(--tj-color-common-white, #fff);
}

@media (max-width: 991.98px) {
  .vendor_item {
    padding-inline: 12px;
  }

  .vendor_name {
    font-size: 0.875rem;
    white-space: normal;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Footer overlap
   The theme pulls .tj-cta-section up into the footer with margin-bottom:-138px.
   That was tuned for footer-1, which is a plain full-bleed block. footer-3 ,
   now used on every page , is a self-contained rounded card, so the CTA landed
   on top of it: it clipped the card's top corners and completely covered the
   "Stay Connected with Delta Networks" heading and part of the signup field.
   -------------------------------------------------------------------------- */

.tj-cta-section {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Services tab row
   Five tabs at the theme's 31px side padding total ~1355px inside a 1304px
   container, so the fifth wrapped onto a second row and left a band of empty
   space beside it. Fluid side padding brings the row back onto one line on a
   wide screen; on narrower desktops it scrolls sideways rather than wrapping.
   -------------------------------------------------------------------------- */

@media (min-width: 992px) {
  .services_tabs {
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    column-gap: 6px;
  }

  .services_tabs::-webkit-scrollbar {
    display: none;
  }

  .services_tabs .service_tab_item {
    flex: 0 0 auto;
    padding-inline: clamp(12px, 1.5vw, 30px);
    white-space: nowrap;
  }
}

/* ==========================================================================
   Dedicated service pages
   Six pages built from the site map's six service anchors. Mobile-first: the
   base rules are the phone layout, min-width blocks add desktop refinements.
   ========================================================================== */

.service-detail-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 50%;
  background-color: var(--tj-color-theme-primary, #d3ed31);
  color: #050505;
  font-size: 26px;
}

.service-detail-intro .lead-copy {
  font-size: 1.125rem;
  line-height: 1.55;
  margin-bottom: 20px;
  color: var(--tj-color-heading-primary);
}

.service-detail-intro p {
  max-width: 62ch;
}

.service-includes {
  margin-top: 40px;
}

.service-includes-title {
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.service-includes-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 2px;
}

.service-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.1));
}

.service-includes-list li i {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--tj-color-theme-primary, #d3ed31);
}

/* --- Side panels ---------------------------------------------------------- */

.service-panel {
  padding: 28px 24px;
  border: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.1));
  border-radius: 12px;
}

.service-panel + .service-panel {
  margin-top: 20px;
}

.panel-title {
  font-size: 1.125rem;
  margin: 0 0 10px;
}

.panel-intro {
  margin: 0 0 14px;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.08));
  font-family: var(--tj-ff-heading, "Manrope", sans-serif);
  font-weight: 600;
}

.panel-list li:last-child {
  border-bottom: 0;
}

.panel-note {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.1));
  font-size: 0.9375rem;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.service-panel--cta {
  background-color: rgba(0, 0, 0, 0.035);
}

.service-panel--cta p {
  margin-bottom: 18px;
}

@media (min-width: 992px) {
  .service-panel {
    padding: 32px;
    position: sticky;
    top: 110px;
  }

  /* Only the first panel sticks; the CTA below it scrolls normally. */
  .service-panel + .service-panel {
    position: static;
  }
}

/* --- "All services" cross-links ------------------------------------------- */

.other-services {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.12));
}

.other-services li {
  border-bottom: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.12));
}

/* The theme's default link colour is the lime accent, which is ~1.6:1 on the
   light page background. These are body links, so they take heading ink and use
   the accent only on hover. */
.other-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 14px 4px;
  font-family: var(--tj-ff-heading, "Manrope", sans-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--tj-color-heading-primary);
  transition: padding-inline-start 0.25s ease, color 0.25s ease;
}

.other-services a .other-service-title {
  color: inherit;
}

.other-services a:hover {
  padding-inline-start: 14px;
}

.other-services .other-service-arrow {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.14));
  font-size: 14px;
}

.other-services a:hover .other-service-arrow {
  background-color: var(--tj-color-theme-primary, #d3ed31);
  border-color: var(--tj-color-theme-primary, #d3ed31);
  color: #050505;
}

/* The page you are already on stays listed, but reads as current. */
.other-services .is-current a {
  opacity: 0.5;
  pointer-events: none;
}

@media (min-width: 768px) {
  .other-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
}

@media (min-width: 1200px) {
  .other-services {
    grid-template-columns: repeat(3, 1fr);
  }

  .other-services a {
    font-size: 1.125rem;
  }
}

/* --------------------------------------------------------------------------
   Form status messages
   Inline rather than modal: the theme's success/failure modals only existed on
   contact.html, so the services-page form and every newsletter form had no way
   to tell anyone what had happened.
   -------------------------------------------------------------------------- */

.form-status {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
}

.form-status.is-pending {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.form-status.is-success {
  background-color: rgba(60, 140, 60, 0.12);
  color: #1f5c1f;
}

.form-status.is-error {
  background-color: rgba(190, 60, 60, 0.1);
  color: #9c2b2b;
}

/* The footer signup is a narrow column, so its message needs room to wrap. */
.subscribe_form .form-status {
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   Service page context blocks , problems / why / method
   -------------------------------------------------------------------------- */

.block-title {
  font-size: 1.375rem;
  margin-bottom: 12px;
}

.block-intro {
  color: var(--tj-color-theme-dark-3, #6d6e68);
  max-width: 56ch;
}

.problem-list,
.why-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.problem-list li,
.why-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.08));
}

.problem-list li:last-child,
.why-list li:last-child {
  border-bottom: 0;
}

/* Problems get a neutral dash, not a tick , a tick would read as a feature. */
.problem-mark {
  position: absolute;
  inset-inline-start: 0;
  top: 20px;
  width: 12px;
  height: 1px;
  background-color: currentColor;
  opacity: 0.4;
}

.why-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--tj-color-theme-primary, #d3ed31);
}

/* Numbered delivery method */
.method-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.method-list li {
  position: relative;
  counter-increment: step;
  padding: 12px 0 12px 44px;
  border-bottom: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.08));
  font-family: var(--tj-ff-heading, "Manrope", sans-serif);
  font-weight: 600;
}

.method-list li:last-child {
  border-bottom: 0;
}

.method-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  inset-inline-start: 0;
  top: 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

/* --------------------------------------------------------------------------
   Unconfirmed-service checklists (fibre optic, maintenance & AMC)
   Deliberately reads as an internal worksheet, not a finished page, so nobody
   mistakes either of these for publishable content.
   -------------------------------------------------------------------------- */

.confirm-panel {
  margin-top: 40px;
  padding: 28px 22px;
  border: 1px dashed var(--tj-color-border-1, rgba(0, 0, 0, 0.25));
  border-radius: 12px;
}

.confirm-title {
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.confirm-intro {
  margin: 0 0 28px;
  max-width: 62ch;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.confirm-group + .confirm-group {
  margin-top: 28px;
}

.confirm-group-title {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.confirm-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.confirm-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.07));
}

.confirm-list li:last-child {
  border-bottom: 0;
}

.confirm-box {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin-top: 4px;
  border: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.35));
  border-radius: 3px;
}

@media (min-width: 768px) {
  .confirm-panel {
    padding: 40px;
  }

  .confirm-list {
    columns: 2;
    column-gap: 40px;
  }

  .confirm-list li {
    break-inside: avoid;
  }
}

/* ==========================================================================
   Service landing pages
   Mobile-first: base rules are the phone layout, min-width blocks refine up.
   ========================================================================== */

/* --- 1. Hero -------------------------------------------------------------- */

.service-hero {
  padding-top: clamp(104px, 22vw, 150px);
  padding-bottom: clamp(48px, 10vw, 80px);
}

.service-hero-content .tj-page-link {
  margin-bottom: 16px;
}

.service-hero .tj-page-title {
  margin-bottom: 16px;
}

.service-hero-sub {
  max-width: 52ch;
  font-size: 1.0625rem;
  line-height: 1.55;
  margin-bottom: 22px;
}

/* The theme's link colour is the lime accent, which measures 1.23:1 against the
   hero's light background , effectively unreadable. The number takes heading ink
   and the accent is kept for the icon only. */
.service-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  font-family: var(--tj-ff-heading, "Manrope", sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tj-color-heading-primary);
}

.service-hero-call span {
  color: inherit;
}

.service-hero-call i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--tj-color-theme-primary, #d3ed31);
  color: #050505;
  font-size: 15px;
}

/* --- Lead form ------------------------------------------------------------ */

.dn-lead-form {
  padding: 24px 20px;
  border-radius: 14px;
  background-color: var(--tj-color-common-white, #fff);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.lead-form-title {
  font-size: 1.25rem;
  margin: 0 0 6px;
}

.lead-form-note {
  margin: 0 0 18px;
  font-size: 0.9375rem;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.lead-form-grid {
  display: grid;
  gap: 14px;
}

.lead-field label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.lead-field input {
  width: 100%;
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.16));
  border-radius: 8px;
  background-color: transparent;
  color: var(--tj-color-heading-primary);
  font-size: 16px; /* below 16px iOS zooms the page on focus */
}

.lead-field input:focus {
  outline: 2px solid var(--tj-color-theme-primary, #d3ed31);
  outline-offset: 1px;
  border-color: transparent;
}

.lead-submit {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

.lead-form-alt {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.lead-form-alt a {
  font-weight: 700;
  color: var(--tj-color-heading-primary);
}

@media (min-width: 576px) {
  .lead-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-field--wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 992px) {
  .dn-lead-form {
    padding: 32px;
  }
}

/* --- 2. Trust bar --------------------------------------------------------- */

.trust-bar {
  padding-block: 22px;
  border-bottom: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.1));
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 12px;
}

.trust-item {
  text-align: center;
}

.trust-figure {
  display: block;
  font-family: var(--tj-ff-heading, "Manrope", sans-serif);
  font-size: clamp(1.25rem, 5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--tj-color-heading-primary);
}

.trust-label {
  display: block;
  margin-top: 4px;
  font-size: 0.8125rem;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

@media (min-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- 5. Proof (empty state) ----------------------------------------------- */

.proof-empty {
  padding: 28px 22px;
  border: 1px dashed var(--tj-color-border-1, rgba(0, 0, 0, 0.28));
  border-radius: 12px;
}

.proof-empty p {
  margin: 0;
  max-width: 66ch;
}

.proof-empty-note {
  margin-top: 12px !important;
  color: var(--tj-color-theme-dark-3, #6d6e68);
  font-size: 0.9375rem;
}

/* --- 7. Process ----------------------------------------------------------- */

.process-grid {
  /* .dn-step, not .process-step: the theme owns that name and rotates it 90deg. */
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: pstep;
  display: grid;
  gap: 20px;
}

.dn-step {
  counter-increment: pstep;
  position: relative;
  padding-top: 34px;
  border-top: 2px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.12));
}

.dn-step::before {
  content: counter(pstep, decimal-leading-zero);
  position: absolute;
  top: 10px;
  inset-inline-start: 0;
  font-family: var(--tj-ff-heading, "Manrope", sans-serif);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.dn-step-title {
  font-size: 1.0625rem;
  margin: 0 0 6px;
}

.dn-step-desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

@media (min-width: 640px) {
  .process-grid {
  /* .dn-step, not .process-step: the theme owns that name and rotates it 90deg. */
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }
}

@media (min-width: 1200px) {
  .process-grid {
  /* .dn-step, not .process-step: the theme owns that name and rotates it 90deg. */
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- 8. Coverage ---------------------------------------------------------- */

.coverage-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.coverage-list li {
  padding: 9px 16px;
  border: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.14));
  border-radius: 999px;
  font-size: 0.9375rem;
}

/* --- 9. FAQ --------------------------------------------------------------- */

.faq-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.1));
}

.faq-q {
  font-size: 1.0625rem;
  margin: 0 0 8px;
}

.faq-a {
  margin: 0;
  max-width: 68ch;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

/* An unanswered question is flagged, not hidden , these decide deals. */
.faq-row.is-unanswered .faq-a {
  padding: 10px 12px;
  border-inline-start: 3px solid var(--tj-color-theme-primary, #d3ed31);
  background-color: rgba(0, 0, 0, 0.035);
  border-radius: 0 6px 6px 0;
}

/* --- 10. Closing CTA ------------------------------------------------------ */

.closing-cta {
  background-color: rgba(0, 0, 0, 0.03);
}

@media (min-width: 992px) {
  .service-hero .dn-lead-form {
    margin-bottom: -60px;
  }
}

/* --------------------------------------------------------------------------
   Provisional capability lists (fibre optic, maintenance & AMC)
   These two services have no description in the company profile. The lines are
   rendered as claims-in-waiting, visually distinct from the confirmed scope
   lists on the other four service pages, so nobody reads them as fact.
   -------------------------------------------------------------------------- */

.provisional-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.provisional-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--tj-color-border-1, rgba(0, 0, 0, 0.18));
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.provisional-list li:last-child {
  border-bottom: 0;
}

.confirm-tag {
  flex: 0 0 auto;
  align-self: center;
  padding: 3px 9px;
  border: 1px solid var(--tj-color-border-1, rgba(0, 0, 0, 0.2));
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--tj-color-theme-dark-3, #6d6e68);
}

.draft-notice-section {
  padding-top: 40px;
}
