:root {
  --navy-950: #031426;
  --navy-900: #06213d;
  --navy-800: #08345f;
  --blue-700: #0a4f8e;
  --blue-600: #0f6bb5;
  --blue-500: #1688dd;
  --blue-100: #dcefff;
  --blue-50: #eff8ff;
  --ink: #13283b;
  --muted: #57697a;
  --line: #d7e2eb;
  --surface: #f2f6f8;
  --white: #ffffff;
  --warm: #efe5d4;
  --shadow-sm: 0 10px 28px rgba(4, 30, 55, 0.08);
  --shadow-lg: 0 24px 60px rgba(3, 20, 38, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfaf7;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  text-wrap: balance;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(780px, 100%);
}

.centered {
  margin-inline: auto;
  text-align: center;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #54b7ff;
  outline-offset: 3px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #8dd2ff;
}

.section {
  position: relative;
  padding: 88px 0;
  scroll-margin-top: 88px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.25rem;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading > p:last-child,
.split-copy > p,
.contact-copy > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark {
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 90% 15%, rgba(22, 136, 221, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.section-dark h2,
.section-dark h3,
.section-dark .section-heading > p:last-child,
.section-dark .split-copy > p {
  color: inherit;
}

.section-soft {
  background:
    radial-gradient(circle at 88% 10%, rgba(22, 136, 221, 0.07), transparent 24%),
    linear-gradient(150deg, #f7fafc, var(--surface));
}

.section-warm {
  background: linear-gradient(135deg, #faf8f3, var(--warm));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(215, 226, 235, 0.9);
  box-shadow: 0 8px 24px rgba(3, 20, 38, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 220px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-left: auto;
  color: var(--navy-900);
  font-size: 0.91rem;
  font-weight: 700;
}

.nav > a,
.nav summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.nav > a:hover,
.nav summary:hover,
.nav a[aria-current="page"] {
  color: var(--blue-600);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin: -4px 0 0 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown[open] summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  z-index: 60;
  min-width: 270px;
  display: grid;
  gap: 2px;
  padding: 0.55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.dropdown-menu a {
  padding: 0.66rem 0.8rem;
  color: var(--navy-900);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--blue-700);
  background: var(--blue-50);
}

.header-call,
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.header-call {
  flex: 0 0 auto;
  min-height: 44px;
  color: var(--white);
  background: var(--navy-900);
}

.header-call:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 12px 26px rgba(15, 107, 181, 0.22);
}

.btn-primary:hover {
  background: var(--blue-700);
}

.btn-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: rgba(6, 33, 61, 0.16);
}

.btn-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  place-items: center;
  color: var(--navy-900);
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-only {
  display: none !important;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 78% 18%, rgba(22, 136, 221, 0.34), transparent 30%),
    linear-gradient(128deg, var(--navy-950) 0%, var(--navy-900) 56%, #0a467a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(141, 210, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 210, 255, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to left, black, transparent 76%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: 80px 0;
}

.hero h1,
.service-hero h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5.25rem);
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 1.25rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 710px;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.91rem;
  font-weight: 700;
}

.hero-proof li {
  position: relative;
  padding-left: 1.15rem;
}

.hero-proof li::before {
  content: "";
  position: absolute;
  top: 0.57em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #72c8ff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(114, 200, 255, 0.12);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -66px;
  width: 190px;
  height: 205px;
  background: url("assets/logo-mark-white.png?v=20260810") center / contain no-repeat;
  opacity: 0.06;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-photo-row {
  height: 148px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-photo-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.hero-photo-row img + img {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-panel-content {
  padding: 1.5rem 1.6rem 1.6rem;
}

.hero-panel-label {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  color: #a9deff;
  background: rgba(22, 136, 221, 0.18);
  border: 1px solid rgba(141, 210, 255, 0.22);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 1rem 0;
  color: var(--white);
  font-size: 1.65rem;
}

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

.hero-service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
  text-decoration: none;
}

.hero-service-list a::after {
  content: "→";
  color: #8dd2ff;
  font-size: 1.2rem;
}

.hero-service-list a:hover {
  color: #a9deff;
}

.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  color: var(--navy-900);
  background: var(--warm);
  border-bottom: 1px solid #e7dfd0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-bar-item {
  padding: 1.2rem 1.5rem;
  border-left: 1px solid #e2d8c6;
}

.trust-bar-item:first-child {
  border-left: 0;
}

.trust-bar-item strong,
.trust-bar-item span {
  display: block;
}

.trust-bar-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.trust-bar-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

.featured-services {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.compact-card,
.reason-card,
.process-card,
.contact-form,
.info-card,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), #79cfff);
  z-index: 2;
}

.service-card:hover,
.compact-card:hover,
.reason-card:hover,
.process-card:hover {
  transform: translateY(-4px);
  border-color: #a7d8f7;
  box-shadow: 0 18px 38px rgba(4, 30, 55, 0.11);
}

.service-card-image {
  width: 100%;
  height: 188px;
  object-fit: cover;
  background: var(--navy-900);
  transition: transform 280ms ease, filter 280ms ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.4rem 1.45rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid #c9e7fa;
  border-radius: 12px;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3,
.compact-card h3,
.reason-card h3,
.process-card h3,
.info-card h2,
.info-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
}

.service-card p,
.compact-card p,
.reason-card p,
.process-card p,
.info-card p {
  color: var(--muted);
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 0.3rem;
}

.service-card .text-link::before,
.compact-card-linked .text-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}

.service-card:focus-within,
.compact-card-linked:focus-within {
  border-color: var(--blue-500);
  outline: 3px solid #72c7ff;
  outline-offset: 3px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
}

.text-link:hover {
  color: var(--blue-500);
}

.secondary-services {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.2rem;
}

.compact-card {
  position: relative;
  min-height: 150px;
  display: grid;
  grid-template-columns: 124px 1fr;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.compact-card > img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  transition: transform 280ms ease;
}

.compact-card:hover > img {
  transform: scale(1.04);
}

.compact-card > div {
  align-self: center;
  padding: 1.05rem 1rem;
}

.compact-card p:last-child {
  margin-bottom: 0;
}

.compact-card-linked .text-link {
  margin-top: 0.65rem;
  font-size: 0.9rem;
}

.split-grid,
.contact-grid,
.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-panel,
.monitoring-panel {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  overflow: hidden;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-panel::after,
.monitoring-panel::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -70px;
  width: 210px;
  height: 225px;
  background: url("assets/logo-mark-white.png?v=20260810") center / contain no-repeat;
  opacity: 0.06;
}

.monitoring-panel {
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  padding: 0;
}

.monitoring-panel::after {
  display: none;
}

.monitoring-image {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.monitoring-panel-content {
  align-self: center;
  padding: 1.7rem;
}

.about-panel h3,
.monitoring-panel h3 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.6rem;
}

.about-panel ul,
.monitoring-panel ul,
.check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-panel li,
.monitoring-panel li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.about-panel li,
.monitoring-panel li {
  color: rgba(255, 255, 255, 0.84);
}

.about-panel li::before,
.monitoring-panel li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #69c3ff;
  font-weight: 900;
}

.reason-grid {
  grid-template-columns: repeat(3, 1fr);
}

.reason-card,
.process-card {
  position: relative;
  padding: 1.35rem;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reason-card::before,
.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), #79cfff);
}

.reason-card p:last-child,
.process-card p:last-child {
  margin-bottom: 0;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.2rem 0;
}

.area-tags span {
  padding: 0.55rem 0.8rem;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.cta-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: rgba(255, 255, 255, 0.84);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-panel h2,
.cta-panel h3 {
  color: var(--white);
}

.cta-panel p {
  max-width: 720px;
}

.cta-panel .hero-actions {
  margin-top: 1.25rem;
}

.page-intro-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.page-intro-list li {
  position: relative;
  padding-left: 1.4rem;
}

.page-intro-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--blue-500);
  border-radius: 50%;
}

.footer-subheading {
  margin-top: 1.25rem;
}

.license-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(145deg, var(--white), #f4f9fc);
  border-top: 4px solid var(--blue-600);
}

.license-card .eyebrow {
  margin-bottom: 0.55rem;
}

.license-card h3 {
  margin-bottom: 1rem;
  color: var(--navy-900);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.license-number {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  background: var(--blue-50);
  border: 1px solid #c9e7fa;
  border-radius: 12px;
}

.license-card .license-number strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--navy-900);
  font-size: 1.1rem;
}

.license-card p:last-child {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  text-align: left;
}

.centered-actions {
  justify-content: center;
}

.faq-list details {
  padding: 1rem 1.15rem;
}

.faq-list summary {
  color: var(--navy-900);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.contact-section {
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 12% 22%, rgba(22, 136, 221, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.contact-grid {
  align-items: start;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-details {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0;
}

.contact-details a {
  width: fit-content;
  color: var(--white);
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  color: var(--ink);
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field-full,
.form-status,
.form-note,
.contact-form button {
  grid-column: 1 / -1;
}

.form-field label,
.form-label {
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cbd9e4;
  border-radius: var(--radius-sm);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(22, 136, 221, 0.12);
}

.required-note,
.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-status:not(:empty) {
  padding: 0.7rem 0.8rem;
  color: #7b2b25;
  background: #fff0ee;
  border: 1px solid #f0c3be;
  border-radius: var(--radius-sm);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form .btn {
  width: 100%;
}

.service-hero {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 82% 20%, rgba(22, 136, 221, 0.3), transparent 30%),
    linear-gradient(130deg, var(--navy-950), var(--navy-800));
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: 76px 0;
}

.service-hero h1 {
  max-width: 800px;
  margin-bottom: 1rem;
  font-size: clamp(2.65rem, 5vw, 4.6rem);
}

.service-hero-copy > p:not(.eyebrow, .breadcrumb) {
  max-width: 720px;
  font-size: 1.1rem;
}

.breadcrumb {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 700;
}

.breadcrumb a {
  color: #9dd9ff;
  text-underline-offset: 3px;
}

.info-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
}

.info-card .check-list {
  color: var(--muted);
}

.service-photo-card {
  padding: 0;
}

.service-page-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--navy-900);
}

.service-photo-card-body {
  padding: 1.55rem;
}

.service-photo-card-body .check-list {
  margin-bottom: 0;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 0.85rem;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 50%;
  font-weight: 800;
}

.service-cta {
  text-align: center;
}

.service-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 58px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 2.5rem;
}

.footer-logo {
  width: 250px;
  height: auto;
  margin-bottom: 1rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.site-footer a {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
}

.site-footer ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
}

.footer-contact p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.confirmation-page {
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: 90px 0;
  background: var(--surface);
}

.confirmation-card {
  max-width: 700px;
  padding: clamp(1.6rem, 5vw, 3rem);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.confirmation-card h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 1080px) {
  .header-call {
    display: none;
  }

  .featured-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 82px 0 0;
    z-index: 40;
    background: rgba(3, 20, 38, 0.5);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-logo {
    width: 195px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: -20px;
    left: -20px;
    z-index: 55;
    max-height: calc(100vh - 74px);
    display: none;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.8rem 20px 1.1rem;
    overflow-y: auto;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .nav > a,
  .nav summary {
    width: 100%;
    min-height: 48px;
    padding-inline: 0.3rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown summary {
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin: 0.25rem 0 0.65rem;
    background: var(--blue-50);
    border: 0;
    box-shadow: none;
  }

  .mobile-only {
    display: inline-flex !important;
  }

  .nav .mobile-only {
    margin-top: 0.8rem;
    color: var(--white);
    background: var(--blue-600);
    border: 0;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid,
  .service-hero-grid,
  .split-grid,
  .contact-grid,
  .service-intro-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .service-hero-grid {
    gap: 2.5rem;
    padding: 66px 0;
  }

  .hero-panel {
    max-width: 660px;
  }

  .trust-bar-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-item {
    padding: 0.9rem 0;
    border-top: 1px solid #e2d8c6;
    border-left: 0;
  }

  .trust-bar-item:first-child {
    border-top: 0;
  }

  .secondary-services,
  .reason-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-cta-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 0.9fr 1.35fr;
    gap: 0.55rem;
    padding: 0.55rem max(14px, env(safe-area-inset-right)) calc(0.55rem + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(3, 24, 44, 0.14);
    backdrop-filter: blur(12px);
  }

  .mobile-cta-bar a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0.8rem;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
  }

  .mobile-cta-bar a:last-child {
    background: var(--blue-600);
  }

  .mobile-cta-bar a:hover,
  .mobile-cta-bar a:focus-visible {
    background: var(--blue-500);
  }

  body.menu-open .mobile-cta-bar {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .section {
    padding: 66px 0;
    scroll-margin-top: 74px;
  }

  .hero h1,
  .service-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  .hero-grid,
  .service-hero-grid {
    padding: 54px 0;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .featured-services,
  .secondary-services,
  .reason-grid,
  .process-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .compact-card {
    grid-template-columns: 110px 1fr;
  }

  .service-page-image {
    height: 225px;
  }

  .monitoring-panel {
    grid-template-columns: 1fr;
  }

  .monitoring-image {
    height: 220px;
    min-height: 0;
  }

  .hero-photo-row {
    height: 116px;
  }

  .form-field,
  .form-field-full,
  .form-status,
  .form-note,
  .contact-form button {
    grid-column: 1;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
