:root {
  --navy-950: #07111f;
  --navy-900: #0a192b;
  --navy-800: #102a46;
  --blue-600: #1769aa;
  --blue-500: #2386cf;
  --blue-100: #e7f3fb;
  --ink: #14202b;
  --muted: #5f6d79;
  --line: #d9e1e8;
  --soft: #f4f7f9;
  --white: #fff;
  --success: #17795b;
  --shadow: 0 18px 50px rgba(7, 17, 31, 0.12);
  --radius: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

button,
.btn {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-600);
  transform: translateY(-150%);
}

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

.utility-bar {
  color: #c9d6e1;
  background: var(--navy-950);
  font-size: 0.82rem;
}

.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-links {
  display: flex;
  gap: 22px;
}

.utility-links a:hover,
.utility-links a:focus-visible {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(217, 225, 232, 0.7);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  clip-path: polygon(50% 0, 92% 14%, 85% 73%, 50% 100%, 15% 73%, 8% 14%);
  font-size: 1.15rem;
  font-weight: 850;
}

.brand-text {
  display: grid;
  color: var(--navy-900);
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  line-height: 1.1;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav a {
  position: relative;
  color: #31404d;
  font-size: 0.92rem;
  font-weight: 680;
}

.site-nav a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-600);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--blue-600);
}

.site-nav .btn-primary,
.site-nav .btn-primary:hover,
.site-nav .btn-primary:focus-visible,
.site-nav .btn-primary.active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  width: 46px;
  height: 42px;
  display: none;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--navy-900);
  transition: 180ms ease;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.93rem;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 10px 24px rgba(23, 105, 170, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #125a92;
}

.btn-dark {
  color: var(--white);
  background: var(--navy-900);
}

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

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.btn-light {
  color: var(--navy-900);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(35, 134, 207, 0.25), transparent 28%),
    linear-gradient(118deg, var(--navy-950) 0%, #0b1e32 63%, #123653 100%);
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 150px rgba(255, 255, 255, 0.02);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: 58px;
  padding-block: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero .eyebrow {
  color: #73c3f1;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-900);
  line-height: 1.16;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.5rem, 5.1vw, 4.65rem);
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4.35vw, 4.05rem);
  line-height: 1.13;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy > p {
  max-width: 720px;
  margin: 0 0 32px;
  color: #c5d4e0;
  font-size: 1.13rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-note {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  color: #9fb3c3;
  font-size: 0.83rem;
}

.hero-note .dot {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: #43d3a5;
  box-shadow: 0 0 0 5px rgba(67, 211, 165, 0.13);
}

.hero-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background-image:
    linear-gradient(180deg, rgba(7, 17, 31, 0.08) 35%, rgba(7, 17, 31, 0.8) 100%),
    url("../images/hero-security.jpg"),
    linear-gradient(135deg, #173b5b, #081626 70%);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.hero-image > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 58% center;
}

.hero-image::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 11px;
  content: "";
  z-index: 1;
}

.hero-image-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 23px 24px;
  border-left: 3px solid #64bdf1;
  background: rgba(5, 15, 26, 0.88);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.hero-image-card span,
.hero-image-card strong,
.hero-image-card a {
  display: block;
}

.hero-image-card span {
  margin-bottom: 5px;
  color: #75c5f3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-image-card strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.03rem;
  line-height: 1.35;
}

.hero-image-card a {
  color: #bcdff4;
  font-size: 0.86rem;
  font-weight: 760;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 106px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  font-size: 0.89rem;
  font-weight: 750;
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-number {
  color: var(--blue-600);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.section {
  padding-block: 92px;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: #bdcad5;
  background: var(--navy-950);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 42px;
}

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

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading p,
.intro-copy p {
  margin: 0;
  color: var(--muted);
}

.section-dark .section-heading p {
  color: #aabac6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 365px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 17, 31, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: #a9cce4;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-image,
.industry-thumb {
  flex: 0 0 auto;
  background-image:
    linear-gradient(180deg, rgba(7, 17, 31, 0.05), rgba(7, 17, 31, 0.34)),
    linear-gradient(135deg, #1c466a, #081624 78%);
  background-position: center;
  background-size: cover;
}

.service-image {
  min-height: 145px;
}

.image-guard {
  background-image: linear-gradient(180deg, rgba(7, 17, 31, 0.05), rgba(7, 17, 31, 0.34)), url("../images/team-security.jpg"), linear-gradient(135deg, #1c466a, #081624 78%);
}

.image-patrol {
  background-image: linear-gradient(180deg, rgba(7, 17, 31, 0.05), rgba(7, 17, 31, 0.34)), url("../images/vip-security-2.jpg"), linear-gradient(135deg, #1c466a, #081624 78%);
}

.image-event {
  background-image: linear-gradient(180deg, rgba(7, 17, 31, 0.05), rgba(7, 17, 31, 0.34)), url("../images/event-security.jpg"), linear-gradient(135deg, #1c466a, #081624 78%);
}

.image-construction {
  background-image: linear-gradient(180deg, rgba(7, 17, 31, 0.05), rgba(7, 17, 31, 0.34)), url("../images/about-operations.jpg"), linear-gradient(135deg, #1c466a, #081624 78%);
}

.image-retail {
  background-image: linear-gradient(180deg, rgba(7, 17, 31, 0.05), rgba(7, 17, 31, 0.34)), url("../images/lobby-security.jpg"), linear-gradient(135deg, #1c466a, #081624 78%);
}

.image-office {
  background-image: linear-gradient(180deg, rgba(7, 17, 31, 0.05), rgba(7, 17, 31, 0.34)), url("../images/hero-security.jpg"), linear-gradient(135deg, #1c466a, #081624 78%);
}

.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.icon-box {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #75c5f3;
  background: rgba(35, 134, 207, 0.14);
  font-weight: 850;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 8px;
}

.service-card .icon-box {
  margin-top: -45px;
  margin-bottom: 20px;
  border: 4px solid var(--white);
  color: var(--white);
  background: var(--blue-600);
  box-sizing: content-box;
}

.service-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link {
  margin-top: auto;
  color: var(--blue-600);
  font-size: 0.86rem;
  font-weight: 780;
}

.text-link:hover {
  text-decoration: underline;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.feature-visual {
  position: relative;
  min-height: 485px;
  overflow: hidden;
  border-radius: 14px;
  background-image:
    linear-gradient(rgba(7, 17, 31, 0.06), rgba(7, 17, 31, 0.72)),
    linear-gradient(135deg, #1a4669, #091826 76%);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.feature-security-photo {
  background-image:
    linear-gradient(rgba(7, 17, 31, 0.06), rgba(7, 17, 31, 0.72)),
    url("../images/residential-security.jpg"),
    linear-gradient(135deg, #1a4669, #091826 76%);
}

.feature-visual > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.about-operations-photo > img {
  object-position: 54% center;
}

.feature-visual::before {
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  content: "";
  z-index: 1;
}

.visual-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 24px;
  border-left: 3px solid #5bb5eb;
  color: #d4e2ec;
  background: rgba(7, 17, 31, 0.84);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.visual-badge strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #3f4e5b;
  font-weight: 680;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--success);
  background: #e4f4ee;
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid #223146;
  background: #223146;
}

.industry-item {
  min-height: 106px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px;
  background: #0c1b2c;
  transition: background 180ms ease;
}

.industry-item:hover {
  background: #112b45;
}

.industry-thumb {
  width: 92px;
  height: 76px;
  border-radius: 6px;
}

.industry-item > div:last-child {
  display: grid;
  gap: 2px;
}

.industry-item span {
  color: #5bb5eb;
  font-size: 0.78rem;
  font-weight: 850;
}

.industry-item strong {
  color: var(--white);
  font-size: 1.06rem;
}

.process-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-card,
.value-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-number {
  margin-bottom: 17px;
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process-card p,
.value-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band {
  padding-block: 60px;
  color: var(--white);
  background: var(--blue-600);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-inner h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.cta-inner p {
  max-width: 650px;
  margin: 0;
  color: #d8ecfa;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 92px 82px;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-950), #102d48);
}

.page-hero::after {
  position: absolute;
  top: -160px;
  right: 5%;
  width: 420px;
  height: 420px;
  border: 75px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 17px;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.page-hero p {
  max-width: 700px;
  margin: 0;
  color: #bdcfdd;
  font-size: 1.08rem;
}

.breadcrumb {
  margin-bottom: 22px;
  color: #79c3ef;
  font-size: 0.8rem;
  font-weight: 780;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.detail-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 17, 31, 0.05);
}

.detail-card-image {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.detail-card-image.focus-team {
  object-position: center 10%;
}

.detail-card-image.focus-vip-portrait {
  object-position: center 15%;
}

.detail-card-image.focus-event {
  object-position: center 54%;
}

.detail-card-image.focus-lobby {
  object-position: center 46%;
}

.detail-card-image.focus-hero-scene {
  object-position: 56% 48%;
}

.detail-card-image.focus-residential {
  object-position: center 8%;
}

.detail-card-body {
  padding: 26px 28px 29px;
}

.detail-card-body .icon-box {
  margin-top: -51px;
  margin-bottom: 20px;
  border: 4px solid var(--white);
  color: var(--white);
  background: var(--blue-600);
  box-sizing: content-box;
}

.detail-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-team-photo,
.sidebar-photo {
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #173b5b, #081626);
  box-shadow: var(--shadow);
}

.about-team-photo {
  height: 450px;
}

.about-team-photo img,
.sidebar-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-team-photo img {
  object-position: center 22%;
}

.sidebar-photo {
  height: 250px;
}

.sidebar-photo img {
  object-position: center 18%;
}

.sidebar-photo-lobby img {
  object-position: center 28%;
}

.coverage-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.coverage-graphic {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 40px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at center, rgba(49, 149, 215, 0.28), transparent 7%),
    radial-gradient(circle at center, transparent 0 19%, rgba(88, 178, 233, 0.18) 19.5% 20%, transparent 20.5% 38%, rgba(88, 178, 233, 0.12) 38.5% 39%, transparent 39.5%),
    var(--navy-900);
  text-align: center;
}

.coverage-graphic strong {
  display: block;
  font-size: 1.35rem;
}

.coverage-graphic span {
  color: #b7c9d6;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  align-items: start;
  gap: 42px;
}

.form-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  color: #293946;
  font-size: 0.88rem;
  font-weight: 740;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8d2da;
  border-radius: 7px;
  outline: none;
  color: var(--ink);
  background: var(--white);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

input,
select {
  height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 138px;
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.12);
}

.form-help {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--success);
  font-size: 0.88rem;
  font-weight: 720;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}

.contact-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--navy-900);
  font-weight: 760;
}

.contact-card a:hover {
  color: var(--blue-600);
}

.contact-card address,
.footer-contact address {
  margin: 0;
  font-style: normal;
}

.contact-company strong {
  color: var(--navy-900);
  font-size: 1.04rem;
  letter-spacing: 0.03em;
}

.legal-content {
  max-width: 850px;
}

.legal-content h2 {
  margin-top: 46px;
  font-size: 1.6rem;
}

.legal-content h3 {
  margin-top: 28px;
}

.legal-content p,
.legal-content li {
  color: #4f5e6a;
}

.legal-content a {
  color: var(--blue-600);
  text-decoration: underline;
}

.notice {
  padding: 18px 20px;
  border-left: 3px solid var(--blue-600);
  color: #435462;
  background: var(--blue-100);
}

.site-footer {
  color: #9fb0be;
  background: #050d17;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 54px;
  padding-block: 54px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  background: var(--blue-600);
}

.footer-brand .brand-text {
  color: #f7fafc;
}

.footer-brand .brand-text small {
  color: #b8c6d1;
}

.footer-about {
  max-width: 390px;
  margin: 20px 0 0;
  color: #b3c1cc;
  font-size: 0.88rem;
  line-height: 1.72;
}

.footer-title {
  margin: 0 0 17px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
}

.footer-contact li {
  line-height: 1.5;
}

.footer-contact span {
  color: #c8d4de;
  font-weight: 720;
}

.footer-company {
  margin-bottom: 2px;
  color: var(--white);
  font-weight: 820;
  letter-spacing: 0.035em;
}

.footer-legal {
  margin-top: 5px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 21px;
  border-top: 1px solid #1a2632;
  font-size: 0.76rem;
}

.license-note {
  color: #8193a1;
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav a {
    font-size: 0.85rem;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.85fr;
    gap: 35px;
  }

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

@media (max-width: 820px) {
  .utility-inner > span {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 114px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 18px 20px 40px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 16px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .btn {
    margin-top: 16px;
    border: 0;
    color: var(--white);
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 74px;
  }

  .hero-image {
    min-height: 360px;
  }

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

  .trust-item:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .trust-item {
    border-bottom: 1px solid var(--line);
  }

  .split,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-visual {
    min-height: 360px;
  }

  .about-team-photo {
    height: 390px;
  }

  .sidebar-photo {
    height: 230px;
  }

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

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

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

  .utility-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .brand-mark {
    width: 38px;
    height: 42px;
  }

  .site-nav {
    top: 114px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero h1 {
    font-size: clamp(2.12rem, 10vw, 2.38rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .hero-inner {
    padding-block: 58px 66px;
  }

  .hero-image {
    min-height: 285px;
  }

  .hero-image > img {
    object-position: 57% center;
  }

  .hero-image-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 13px 16px;
  }

  .hero-image-card strong {
    margin-bottom: 6px;
    font-size: 0.96rem;
  }

  .hero-image-card a {
    font-size: 0.8rem;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

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

  .trust-grid,
  .services-grid,
  .industry-grid,
  .process-grid,
  .value-grid,
  .detail-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(odd) {
    min-height: 78px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .section {
    padding-block: 68px;
  }

  .service-card {
    min-height: 350px;
  }

  .feature-visual {
    min-height: 310px;
  }

  .about-team-photo {
    height: 330px;
  }

  .detail-card-image {
    height: 190px;
  }

  .detail-card-body {
    padding: 24px 22px 26px;
  }

  .sidebar-photo {
    height: 215px;
  }

  .visual-badge {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .industry-item {
    min-height: 96px;
  }

  .industry-thumb {
    width: 86px;
    height: 68px;
  }

  .page-hero {
    padding-block: 68px 62px;
  }

  .form-card {
    padding: 24px 18px;
  }

  .form-group.full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 46px;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
