/* Service-specific harmonization. Shared width rules live in service-detail-system.css. */
.visual-page {
  --service-accent: #079f9d;
  --service-accent-soft: #e2f6f3;
  --service-accent-ink: #087473;
  --website-primary: #0e5bbb;
  --website-footer: #0d2638;
}

.service-hero {
  border-bottom: 1px solid var(--service-accent-soft);
}

.detail-context,
.eyebrow,
.channel-cue,
.operation-cue,
.automation-cue,
.service-identity,
.access-panel__label,
.contact-panel__label {
  color: var(--service-accent);
}

.service-family::before {
  background: var(--service-accent);
}

.access-panel,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  justify-content: initial;
  padding: 44px 48px;
  border: 1px solid var(--service-accent-soft);
  border-radius: 30px;
  color: #191f28;
  background:
    radial-gradient(circle at 92% 16%, var(--service-accent-soft), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 18px 48px rgba(13, 38, 56, 0.08);
}

.access-panel__label,
.contact-panel__label {
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.access-panel > div > p:nth-of-type(2),
.contact-panel > div > p:nth-of-type(2) {
  max-width: 710px;
  margin: 0;
  color: #333d4b;
  font-size: 0.96rem;
  line-height: 1.65;
}

.contact-panel h3 {
  max-width: 760px;
  margin: 0 0 8px;
  color: #191f28;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.access-panel__back-link,
.contact-panel__back-link {
  color: var(--service-accent-ink);
}

.access-panel .button,
.contact-panel .button {
  min-width: 176px;
  color: #fff;
  background: var(--website-primary);
  box-shadow: 0 12px 26px rgba(14, 91, 187, 0.16);
}

.access-panel__actions {
  min-width: 205px;
}

.access-panel__external {
  border-color: var(--service-accent);
  color: var(--service-accent-ink);
  background: #fff;
}

.site-footer {
  padding: 0;
  color: #b7c5cc;
  background: var(--website-footer);
}

.site-footer__grid {
  display: grid;
  min-height: 0;
  grid-template-columns: 1.3fr 0.85fr 0.85fr 0.85fr 0.9fr;
  gap: 42px;
  align-items: start;
  padding-block: 72px 82px;
}

.site-footer__grid > div:not(.site-footer__brand) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer__grid b {
  margin-bottom: 8px;
  color: #6f8995;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.site-footer__grid a,
.site-footer__grid span {
  color: #b7c5cc;
  font-size: 0.78rem;
  line-height: 1.55;
  text-decoration: none;
}

.site-footer__grid a:hover {
  color: #fff;
}

.site-footer__brand strong {
  color: #fff;
  font-size: 1.38rem;
  letter-spacing: -0.055em;
}

.site-footer__brand p {
  margin: 14px 0 38px;
  color: #b7c5cc;
  font-size: 0.82rem;
}

.site-footer__brand small {
  color: #617985;
  font-size: 0.66rem;
}


.automation-stage {
  filter: drop-shadow(0 20px 36px rgba(7, 159, 157, 0.08));
}

@media (max-width: 980px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .access-panel,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px;
    border-radius: 24px;
  }

  .access-panel .button,
  .contact-panel .button,
  .access-panel__actions {
    width: 100%;
    min-width: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 54px 62px;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__brand p {
    margin-bottom: 22px;
  }
}
