:root {
  --blue: #087bb8;
  --dark-blue: #083c67;
  --green: #75b82a;
  --orange: #ef6d25;
  --ink: #0c3558;
  --muted: #536677;
  --line: #dbe5ec;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  background: #eef5f8;
}

.page-shell {
  min-height: 100vh;
  padding: 30px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 100% 0%, #d6edf3 0, transparent 35%), #eef5f8;
}

.maintenance-card {
  position: relative;
  overflow: hidden;
  width: min(1180px, 100%);
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  border-radius: 28px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(10, 57, 88, .15);
}

.content-column { padding: 52px 42px 38px 58px; }

.eyebrow { margin-top: 0; color: var(--green); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 35px; height: 3px; margin: 0 10px 3px 0; border-radius: 3px; background: var(--orange); }
h1 { margin: 14px 0 16px; color: var(--ink); font-size: clamp(35px, 4vw, 60px); line-height: .98; letter-spacing: -.05em; }
h1 strong { color: var(--blue); }
.intro { max-width: 520px; margin: 0 0 28px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.service-heading strong { color: var(--ink); }
.people-icon { display: grid; place-items: center; width: 30px; height: 30px; border: 2px solid var(--green); border-radius: 50%; color: var(--green); font-size: 19px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { min-height: 235px; display: flex; flex-direction: column; align-items: center; padding: 18px 12px 13px; border: 1px solid var(--line); border-top: 5px solid var(--blue); border-radius: 13px; color: var(--ink); text-align: center; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover, .service-card:focus-visible { transform: translateY(-5px); box-shadow: 0 12px 22px rgba(8, 123, 184, .18); outline: none; }
.service-card.navy { border-top-color: var(--dark-blue); }
.service-card.green { border-top-color: var(--green); }
.service-icon { display: grid; place-items: center; width: 55px; height: 55px; margin-bottom: 11px; border-radius: 50%; background: #e6f4fb; color: var(--blue); font-size: 29px; font-weight: 800; }
.service-card.navy .service-icon { background: #eaf0f8; color: var(--dark-blue); }
.service-card.green .service-icon { background: #eaf6dd; color: #46a54a; }
.service-icon.pse { font-size: 18px; font-style: italic; }
.service-icon.whatsapp { font-size: 34px; }
.service-icon-image { display: block; flex: 0 0 auto; width: 92px; height: 92px; margin: 0 auto 10px; border-radius: 50%; object-fit: cover; box-shadow: 0 5px 12px rgba(8, 60, 103, .13); }
.service-card h2 { min-height: 30px; margin: 0 0 7px; font-size: 14px; line-height: 1.2; }
.service-card p { flex: 1; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.service-button { display: block; width: 100%; padding: 12px 9px; border-radius: 7px; background: var(--dark-blue); color: white; font-size: 11px; font-weight: 800; box-shadow: 0 4px 8px rgba(8, 60, 103, .16); }
.green .service-button { background: #46a54a; }
.service-button b { float: right; margin-right: 2px; font-size: 17px; line-height: 10px; }
.footer-note { margin: 25px 0 0; color: #7a8992; font-size: 12px; }
.footer-note span { color: var(--blue); font-weight: 700; }

.image-column { position: relative; min-height: 650px; background: #f3f5f6; }
.team-image { width: 100%; height: 100%; min-height: 650px; display: block; object-fit: cover; object-position: center; }
.image-column::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.16), transparent 28%), linear-gradient(0deg, rgba(4, 45, 76, .12), transparent 40%); pointer-events: none; }
.image-caption { position: absolute; z-index: 1; right: 26px; bottom: 25px; padding: 10px 14px; border-radius: 6px; background: rgba(7, 58, 94, .84); color: #fff; font-size: 10px; letter-spacing: .08em; }
.image-caption b { color: #a9d22b; }

@media (max-width: 900px) {
  .maintenance-card { grid-template-columns: 1fr; }
  .image-column { min-height: 360px; order: -1; }
  .team-image { min-height: 360px; max-height: 440px; object-position: center 35%; }
  .content-column { padding: 38px 30px 30px; }
}

@media (max-width: 560px) {
  .page-shell { padding: 12px; }
  .maintenance-card { border-radius: 18px; }
  .content-column { padding: 28px 20px 24px; }
  .eyebrow { font-size: 10px; }
  .intro { font-size: 13px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .service-card { min-height: 215px; }
  .image-column, .team-image { min-height: 275px; }
  .image-caption { right: 12px; bottom: 12px; font-size: 8px; }
}
