:root {
  --ink: #071026;
  --ink-soft: #0d1935;
  --blue: #1267e8;
  --blue-light: #75a9ff;
  --amber: #ffb81f;
  --paper: #f4f5f2;
  --white: #ffffff;
  --muted: #aab3c5;
  --line: rgba(255, 255, 255, 0.16);
  --display: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  --body: "Aptos", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-whatsapp { fill: currentColor; stroke: none; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -60px;
  left: 16px;
  padding: 12px 16px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 94px;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  color: #fff;
}

.brand {
  width: 226px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .94);
  border-radius: 3px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .17);
}
.brand img { width: 100%; height: auto; }

.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.nav > a:not(.nav-call) {
  position: relative;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav > a:not(.nav-call)::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--amber);
  transition: right .25s ease;
}
.nav > a:not(.nav-call):hover::after { right: 0; }
.nav-call {
  min-width: 172px;
  padding: 17px 22px 15px;
  border-left: 1px solid var(--line);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}
.nav-call span { display: block; margin-bottom: 5px; color: var(--amber); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.menu-toggle { display: none; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  position: absolute;
  z-index: 2;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 28, .86) 0%, rgba(4, 10, 28, .64) 38%, rgba(4, 10, 28, .04) 70%, rgba(4, 10, 28, .14) 100%),
    linear-gradient(0deg, rgba(4, 10, 28, .72) 0%, transparent 34%);
}
.hero-media {
  position: absolute;
  inset: 0;
  background: #101a31 url("images/hero-security-campus.webp") 58% center/cover no-repeat;
  filter: saturate(.86) contrast(1.04);
  transform: scale(1.015);
  animation: heroZoom 15s ease-in-out infinite alternate;
}
.hero-grid {
  position: absolute;
  z-index: 3;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.hero-content {
  position: relative;
  z-index: 5;
  width: min(1400px, calc(100% - clamp(48px, 10vw, 160px)));
  min-height: min(920px, 100svh);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  padding-top: 86px;
}
.hero-copy { max-width: 870px; padding-bottom: 38px; animation: rise .65s cubic-bezier(.2,.8,.2,1) both; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow > span { width: 34px; height: 3px; background: var(--amber); }
.eyebrow.dark { color: #667087; }
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 7.5vw, 112px);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .88;
}
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong { color: transparent; -webkit-text-stroke: 1.5px #fff; font-weight: 850; }
.hero-lead {
  max-width: 610px;
  margin: 34px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--blue);
  color: #d0d6e2;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 58px;
  padding: 0 26px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: #fff; box-shadow: 0 18px 40px rgba(18, 103, 232, .25); }
.button-primary:hover { background: #2379ef; }
.button-light { background: #fff; color: var(--ink); }
.button-outline { border: 1px solid rgba(255,255,255,.28); color: #fff; }
.text-link { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.55); font-size: 13px; font-weight: 800; }

.hero-status {
  align-self: center;
  justify-self: end;
  width: 240px;
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(5, 14, 34, .5);
  backdrop-filter: blur(12px);
}
.hero-status b, .hero-status small { display: block; }
.hero-status b { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.hero-status small { margin-top: 4px; color: #aab4c8; font-size: 11px; }
.hero-status > svg { color: var(--amber); }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #36d46b; box-shadow: 0 0 0 7px rgba(54, 212, 107, .12); animation: pulse 1.8s ease-out infinite; }

.slide-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, 94px) 1fr;
  align-items: center;
  gap: 13px;
}
.slide-nav button { display: flex; align-items: center; gap: 9px; padding: 8px 0; border: 0; background: transparent; color: #808ca4; cursor: pointer; }
.slide-nav button span { font-size: 10px; font-weight: 900; }
.slide-nav button i { display: block; width: 55px; height: 1px; background: rgba(255,255,255,.22); }
.slide-nav button.active { color: var(--amber); }
.slide-nav button.active i { height: 3px; background: var(--amber); }
.slide-nav p { justify-self: end; margin: 0 90px 0 0; color: rgba(255,255,255,.46); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.hero-edge {
  position: absolute;
  z-index: 6;
  top: 94px;
  right: 0;
  bottom: 0;
  width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 26px;
  border-left: 1px solid var(--line);
  color: rgba(255,255,255,.5);
  font-size: 8px;
  letter-spacing: .26em;
}
.hero-edge span { writing-mode: vertical-rl; }
.hero-edge b { color: var(--amber); writing-mode: vertical-rl; }

.trust-strip {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 78px);
  padding: 24px clamp(22px, 7vw, 100px);
  background: #fff;
  border-bottom: 1px solid #dfe2e8;
}
.trust-strip div { display: flex; align-items: center; gap: 12px; }
.trust-strip b { color: var(--blue); font-size: 10px; }
.trust-strip span { font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.trust-strip > i { width: 1px; height: 28px; background: #d9dce2; }

.section { width: min(1380px, calc(100% - clamp(44px, 9vw, 150px))); margin: 0 auto; }
.services { padding-top: clamp(90px, 11vw, 160px); padding-bottom: clamp(90px, 12vw, 170px); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 70px; }
.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.055em;
}
.section-heading h2 em { color: var(--blue); font-style: normal; font-weight: 850; }
.section-heading > p { max-width: 485px; margin: 0; color: #5f687b; font-size: 16px; line-height: 1.75; }

.service-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: 460px 360px;
  gap: 12px;
}
.service-card { position: relative; min-height: 320px; overflow: hidden; background: #101a31; color: #fff; }
.service-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .4s ease; }
.service-card:hover > img { transform: scale(1.045); filter: saturate(1.08); }
.service-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,10,28,.94) 0%, rgba(4,10,28,.12) 68%), linear-gradient(90deg, rgba(4,10,28,.35), transparent 55%); }
.service-no { position: absolute; top: 22px; left: 22px; min-width: 38px; padding: 7px; border: 1px solid rgba(255,255,255,.4); color: var(--amber); font-size: 10px; font-weight: 900; text-align: center; }
.service-copy { position: absolute; left: 26px; right: 25px; bottom: 25px; }
.service-copy h3 { max-width: 510px; margin: 0; font-family: var(--display); font-size: clamp(22px, 2vw, 33px); line-height: 1.05; letter-spacing: -.035em; }
.service-copy p { max-width: 470px; margin: 10px 0 0; color: #c1c9d8; font-size: 13px; line-height: 1.55; }
.service-copy a { display: flex; align-items: center; gap: 8px; width: max-content; margin-top: 18px; color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.service-copy a svg { width: 16px; transition: transform .2s ease; }
.service-copy a:hover svg { transform: translateX(4px); }
.service-1 { grid-row: 1 / span 2; }
.service-2 { grid-column: 2 / span 2; }
.service-3 img { object-position: 72% center; }
.service-4 img { object-position: 76% center; }
.service-6 img { object-position: 24% center; }

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 760px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.manifesto::before {
  position: absolute;
  content: "SECURITY";
  left: -17px;
  bottom: -25px;
  color: rgba(255,255,255,.025);
  font-family: var(--display);
  font-size: 15vw;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .7;
}
.manifesto-copy { position: relative; z-index: 2; align-self: center; padding: clamp(70px, 9vw, 140px); padding-right: 60px; }
.manifesto-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 5vw, 78px); font-weight: 350; line-height: .98; letter-spacing: -.055em; }
.manifesto-copy h2 strong { color: var(--amber); font-weight: 850; }
.manifesto-copy > p:not(.eyebrow) { max-width: 520px; margin: 34px 0; color: #b4bdce; font-size: 16px; line-height: 1.75; }
.manifesto-visual { position: relative; min-height: 650px; }
.manifesto-visual::after { position: absolute; content: ""; inset: 0; border: 1px solid rgba(255,255,255,.11); pointer-events: none; }
.manifesto-visual > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); }
.quote-card { position: absolute; left: -72px; bottom: 60px; width: min(430px, 85%); padding: 30px 35px; background: var(--blue); box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.quote-card > span { color: var(--amber); font-family: Georgia, serif; font-size: 64px; line-height: .5; }
.quote-card blockquote { margin: 8px 0 18px; font-family: Georgia, serif; font-size: 20px; line-height: 1.45; }
.quote-card small { color: #bad4ff; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }

.proof { display: grid; grid-template-columns: .8fr 1fr 1fr; padding-top: 120px; padding-bottom: 120px; }
.proof > div { min-height: 275px; padding: 38px; }
.proof-title { display: flex; flex-direction: column; justify-content: space-between; padding-left: 0 !important; }
.big-index { color: var(--blue); font-family: var(--display); font-size: 90px; font-weight: 900; line-height: .8; letter-spacing: -.07em; }
.proof-title p { margin: 0; font-size: 13px; font-weight: 900; letter-spacing: .14em; line-height: 1.6; text-transform: uppercase; }
.proof-item { display: flex; flex-direction: column; justify-content: flex-end; background: var(--ink); color: #fff; }
.proof-item.amber { background: var(--amber); color: var(--ink); }
.proof-item > span { margin-bottom: auto; color: var(--blue-light); font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.proof-item.amber > span { color: #7c5700; }
.proof-item h3 { margin: 0 0 14px; font-family: var(--display); font-size: 35px; letter-spacing: -.04em; }
.proof-item p { max-width: 400px; margin: 0; color: #b6bece; font-size: 13px; line-height: 1.65; }
.proof-item.amber p { color: #564318; }

.contact {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: .7fr 1fr .8fr;
  align-items: center;
  gap: 6vw;
  padding: 100px clamp(45px, 8vw, 130px);
  background: #0a1631;
  color: #fff;
  overflow: hidden;
}
.contact::after { position: absolute; content: ""; right: -140px; top: -140px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.contact-orbit { position: relative; width: min(28vw, 390px); aspect-ratio: 1; display: grid; place-items: center; }
.contact-orbit i { position: absolute; border: 1px solid rgba(117,169,255,.22); border-radius: 50%; }
.contact-orbit i:nth-child(1) { inset: 0; animation: orbit 20s linear infinite; }
.contact-orbit i:nth-child(1)::after { position: absolute; content: ""; width: 12px; height: 12px; top: 10%; left: 15%; border-radius: 50%; background: var(--amber); box-shadow: 0 0 20px var(--amber); }
.contact-orbit i:nth-child(2) { inset: 16%; border-color: rgba(117,169,255,.4); }
.contact-orbit i:nth-child(3) { inset: 34%; background: rgba(18,103,232,.1); border-color: var(--blue); }
.contact-orbit b { color: #fff; font-family: var(--display); font-size: clamp(28px, 4vw, 58px); letter-spacing: -.06em; }
.contact-copy { position: relative; z-index: 2; }
.contact-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(52px, 6.2vw, 92px); line-height: .88; letter-spacing: -.06em; }
.contact-copy > p:not(.eyebrow) { max-width: 540px; margin: 30px 0; color: #adb7ca; font-size: 16px; line-height: 1.7; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.contact address { position: relative; z-index: 2; display: grid; gap: 0; font-style: normal; border-top: 1px solid rgba(255,255,255,.14); }
.contact address a { display: grid; grid-template-columns: 26px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: #c0c8d7; font-size: 13px; line-height: 1.6; }
.contact address a:hover { color: #fff; }
.contact address svg { color: var(--amber); }
.contact address b { display: block; margin-bottom: 5px; color: #fff; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }

footer {
  min-height: 140px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 30px clamp(30px, 7vw, 105px);
  background: #fff;
  border-top: 1px solid #e1e4ea;
}
footer img { width: 180px; }
footer p { color: #737c8e; font-size: 11px; }
footer a { justify-self: end; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.mobile-contact {
  position: fixed;
  z-index: 100;
  left: 22px;
  bottom: 22px;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 3px;
  box-shadow: 0 14px 40px rgba(2,8,22,.3);
}
.mobile-contact a { display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 20px; color: #fff; font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.mobile-contact a:first-child { background: #367fb9; }
.mobile-contact a:last-child { background: #25d366; }
.mobile-contact svg { width: 19px; height: 19px; }
.mobile-contact .icon-whatsapp { width: 21px; height: 21px; }

@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes heroZoom { to { transform: scale(1.06); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(54,212,107,.35); } 70% { box-shadow: 0 0 0 10px rgba(54,212,107,0); } 100% { box-shadow: 0 0 0 0 rgba(54,212,107,0); } }
@keyframes orbit { to { transform: rotate(360deg); } }

@media (max-width: 1050px) {
  .site-header { height: 80px; }
  .brand { width: 190px; }
  .nav { gap: 18px; }
  .nav-call { min-width: 150px; padding-right: 0; }
  .hero-content { width: calc(100% - 90px); grid-template-columns: 1fr; }
  .hero-status { position: absolute; right: 20px; top: 120px; }
  .hero-edge { top: 80px; }
  .slide-nav p { margin-right: 35px; }
  .section-heading { gap: 35px; }
  .service-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 500px 350px 350px; }
  .service-1 { grid-row: 1; grid-column: 1; }
  .service-2 { grid-column: 2; }
  .manifesto { grid-template-columns: 1fr 1fr; }
  .manifesto-copy { padding: 70px 45px; }
  .quote-card { left: -30px; }
  .contact { grid-template-columns: .55fr 1fr; }
  .contact address { grid-column: 1 / span 2; grid-template-columns: repeat(3, 1fr); }
  .contact address a { padding-right: 20px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 74px; }
  body { padding-bottom: 62px; }
  .site-header { position: absolute; height: 74px; padding: 0 18px; }
  .brand { width: 162px; padding: 7px 9px; }
  .menu-toggle {
    position: relative;
    z-index: 62;
    margin-left: auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(7,16,38,.55);
    color: #fff;
  }
  .nav {
    position: fixed;
    z-index: 60;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 90px 35px;
    background: rgba(7,16,38,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s ease;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav > a:not(.nav-call) { font-size: 22px; }
  .nav-call { margin-top: 15px; padding-left: 0; border-left: 0; }
  .hero { min-height: 760px; }
  .hero::before { background: linear-gradient(90deg, rgba(4,10,28,.92), rgba(4,10,28,.42)), linear-gradient(0deg, rgba(4,10,28,.96), transparent 65%); }
  .hero-media { background-position: 62% center; }
  .hero-grid { background-size: 55px 55px; }
  .hero-content { width: calc(100% - 38px); min-height: 760px; display: block; padding-top: 165px; }
  .hero-copy { padding: 0; }
  .eyebrow { margin-bottom: 20px; font-size: 9px; letter-spacing: .14em; }
  .hero h1 { max-width: 520px; font-size: clamp(49px, 15vw, 72px); line-height: .91; }
  .hero h1 strong { -webkit-text-stroke-width: 1px; }
  .hero-lead { max-width: 520px; margin-top: 28px; padding-left: 16px; font-size: 15px; line-height: 1.55; }
  .hero-actions { margin-top: 28px; gap: 18px; }
  .button { min-height: 52px; padding: 0 18px; gap: 14px; font-size: 10px; }
  .text-link { display: none; }
  .hero-status { top: auto; right: 0; bottom: 112px; width: 215px; }
  .slide-nav { bottom: 25px; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .slide-nav button { gap: 7px; }
  .slide-nav button i { width: 100%; }
  .slide-nav p { display: none; }
  .hero-edge { display: none; }
  .trust-strip { justify-content: flex-start; gap: 17px; padding: 22px 18px; overflow-x: auto; }
  .trust-strip div { min-width: max-content; }
  .trust-strip span { font-size: 9px; }
  .trust-strip > i { height: 20px; }
  .section { width: calc(100% - 36px); }
  .services { padding-top: 80px; padding-bottom: 80px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 45px; }
  .section-heading h2 { font-size: 49px; }
  .section-heading > p { font-size: 14px; }
  .service-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; gap: 10px; }
  .service-card, .service-1, .service-2 { grid-column: auto; grid-row: auto; min-height: 390px; }
  .service-copy h3 { font-size: 27px; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-copy { padding: 78px 24px 65px; }
  .manifesto-copy h2 { font-size: 46px; }
  .manifesto-visual { min-height: 570px; }
  .quote-card { left: 18px; right: 18px; bottom: 18px; width: auto; padding: 27px; }
  .quote-card blockquote { font-size: 17px; }
  .proof { grid-template-columns: 1fr; padding-top: 75px; padding-bottom: 75px; }
  .proof > div { min-height: 240px; }
  .proof-title { min-height: 175px !important; padding: 0 0 28px !important; }
  .big-index { font-size: 70px; }
  .contact { grid-template-columns: 1fr; gap: 45px; padding: 80px 22px; }
  .contact-orbit { width: 72vw; max-width: 310px; margin: 0 auto; }
  .contact-copy h2 { font-size: 56px; }
  .contact address { grid-column: auto; grid-template-columns: 1fr; }
  .contact address a { padding: 20px 0; }
  footer { grid-template-columns: 1fr; gap: 18px; padding: 35px 22px; text-align: center; }
  footer img { margin: 0 auto; }
  footer a { justify-self: center; }
  .mobile-contact {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    border: 0;
    border-radius: 0;
  }
  .mobile-contact a { flex: 1; justify-content: center; min-height: 62px; padding: 0 12px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
