* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #eef3f6;
  color: #102433;
}

.gateway {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.gateway-shell {
  width: min(100%, 980px);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(16,36,51,0.10);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 24px 80px rgba(16,36,51,0.10);
}

.gateway-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16,36,51,0.58);
}

h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.gateway-lead {
  max-width: 620px;
  margin: 18px 0 24px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
  color: rgba(16,36,51,0.72);
}

.gateway-map-wrap {
  width: 100%;
  overflow: hidden;
}

.gateway-map {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.gateway-notice {
  margin: 0 0 18px;
  padding: 13px 16px;
  border-radius: 16px;
  border: 1px solid rgba(2,64,43,0.14);
  border-left: 4px solid #02402b;
  background: rgba(2,64,43,0.06);
  white-space: pre-line;
  font-size: 15px;
  line-height: 1.45;
}

.gateway-footer {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  justify-content: center;
  color: rgba(16,36,51,0.48);
  font-size: 14px;
}

.gateway-footer a {
  color: rgba(16,36,51,0.66);
  text-decoration: none;
}

.gateway-footer a:hover {
  color: #102433;
}

@media (max-width: 700px) {
  .gateway {
    align-items: start;
    padding: 16px 10px;
  }

  .gateway-shell {
    border-radius: 22px;
    padding: 22px 16px;
  }

  .gateway-map {
    min-height: 360px;
  }
}

.gateway-company {
  text-align: center;
  line-height: 1.55;
}

.gateway-company strong {
  color: rgba(16,36,51,0.78);
}
